Name Description Size Coverage
AnimationName.js 923 89 %
ComputedTimingPath.js 3226 81 %
DelaySign.js 1295 87 %
EffectTimingPath.js 2298 82 %
EndDelaySign.js 1373 88 %
moz.build 495 -
NegativeDelayPath.js 810 100 %
NegativeEndDelayPath.js 883 100 %
NegativePath.js 3089 83 %
SummaryGraph.js 5983 93 %
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 92 %
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 100 %