Name Description Size
AnimationName.js 921
ComputedTimingPath.js 3225
DelaySign.js 1293
EffectTimingPath.js 2297
EndDelaySign.js 1371
moz.build 495
NegativeDelayPath.js 810
NegativeEndDelayPath.js 883
NegativePath.js 3087
SummaryGraph.js 5981
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. 8149
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. 13753