diff --git a/src/proxy-animation.js b/src/proxy-animation.js index 49d2c487..91acbff7 100644 --- a/src/proxy-animation.js +++ b/src/proxy-animation.js @@ -1799,14 +1799,17 @@ function parseTimelineRangeOffset(value, position) { // Parses a given animation-range value (string) function parseAnimationRange(value) { + if (!value) + return { + start: 'normal', + end: 'normal' + }; + const animationRange = { - start: 'normal', - end: 'normal' + start: { rangeName: 'cover', offset: CSS.percent(0) }, + end: { rangeName: 'cover', offset: CSS.percent(100) }, }; - if (!value) - return animationRange; - // Format: // // --> 0% 100%