123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- import { keys, filter, each, isArray, indexOf } from 'zrender/lib/core/util.js';
- import { ELEMENT_ANIMATABLE_PROPS } from './customGraphicTransition.js';
- import { getAnimationConfig } from './basicTransition.js';
- import { warn } from '../util/log.js';
- import { makeInner } from '../util/model.js';
- var getStateToRestore = makeInner();
- var KEYFRAME_EXCLUDE_KEYS = ['percent', 'easing', 'shape', 'style', 'extra'];
- export function stopPreviousKeyframeAnimationAndRestore(el) {
-
- el.stopAnimation('keyframe');
-
- el.attr(getStateToRestore(el));
- }
- export function applyKeyframeAnimation(el, animationOpts, animatableModel) {
- if (!animatableModel.isAnimationEnabled() || !animationOpts) {
- return;
- }
- if (isArray(animationOpts)) {
- each(animationOpts, function (singleAnimationOpts) {
- applyKeyframeAnimation(el, singleAnimationOpts, animatableModel);
- });
- return;
- }
- var keyframes = animationOpts.keyframes;
- var duration = animationOpts.duration;
- if (animatableModel && duration == null) {
-
-
- var config = getAnimationConfig('enter', animatableModel, 0);
- duration = config && config.duration;
- }
- if (!keyframes || !duration) {
- return;
- }
- var stateToRestore = getStateToRestore(el);
- each(ELEMENT_ANIMATABLE_PROPS, function (targetPropName) {
- if (targetPropName && !el[targetPropName]) {
- return;
- }
- var animator;
- var endFrameIsSet = false;
-
- keyframes.sort(function (a, b) {
- return a.percent - b.percent;
- });
- each(keyframes, function (kf) {
-
- var animators = el.animators;
- var kfValues = targetPropName ? kf[targetPropName] : kf;
- if (process.env.NODE_ENV !== 'production') {
- if (kf.percent >= 1) {
- endFrameIsSet = true;
- }
- }
- if (!kfValues) {
- return;
- }
- var propKeys = keys(kfValues);
- if (!targetPropName) {
-
- propKeys = filter(propKeys, function (key) {
- return indexOf(KEYFRAME_EXCLUDE_KEYS, key) < 0;
- });
- }
- if (!propKeys.length) {
- return;
- }
- if (!animator) {
- animator = el.animate(targetPropName, animationOpts.loop, true);
- animator.scope = 'keyframe';
- }
- for (var i = 0; i < animators.length; i++) {
-
- if (animators[i] !== animator && animators[i].targetName === animator.targetName) {
- animators[i].stopTracks(propKeys);
- }
- }
- targetPropName && (stateToRestore[targetPropName] = stateToRestore[targetPropName] || {});
- var savedTarget = targetPropName ? stateToRestore[targetPropName] : stateToRestore;
- each(propKeys, function (key) {
-
- savedTarget[key] = ((targetPropName ? el[targetPropName] : el) || {})[key];
- });
- animator.whenWithKeys(duration * kf.percent, kfValues, propKeys, kf.easing);
- });
- if (!animator) {
- return;
- }
- if (process.env.NODE_ENV !== 'production') {
- if (!endFrameIsSet) {
- warn('End frame with percent: 1 is missing in the keyframeAnimation.', true);
- }
- }
- animator.delay(animationOpts.delay || 0).duration(duration).start(animationOpts.easing);
- });
- }
|