Name Description Size
AnimationName.js 923
ComputedTimingPath.js 3226
DelaySign.js 1295
EffectTimingPath.js 2298
EndDelaySign.js 1373
moz.build 495
NegativeDelayPath.js 810
NegativeEndDelayPath.js 883
NegativePath.js 3089
SummaryGraph.js 5983
SummaryGraphPath.js Return animatable keyframes list which has only offset and easing. Also, this method remove duplicate keyframes. For example, if the given animatedPropertyMap is, [ { key: "color", values: [ { offset: 0, easing: "ease", value: "rgb(255, 0, 0)", }, { offset: 1, value: "rgb(0, 255, 0)", }, ], }, { key: "opacity", values: [ { offset: 0, easing: "ease", value: 0, }, { offset: 1, value: 1, }, ], }, ] then this method returns, [ [ { offset: 0, easing: "ease", }, { offset: 1, }, ], ] @param {Map} animated property map which can get form getAnimatedPropertyMap in animation.js @return {Array} list of keyframes which has only easing and offset. 8152
TimingPath.js Render a graph of given parameters and return as <path> element list. @param {Object} state State of animation. @param {SummaryGraphHelper} helper Instance of SummaryGraphHelper. @return {Array} list of <path> element. 13754