animation.type = 'none';
}
var defaultParams = {};
- var globalDefault = {x: 0, y: 0, yoyo: 0, repeat: 0, transformorigin: '50% 50%'};
+ var globalDefault = {x: 0, y: 0, yoyo: 0, repeatDelay: 0, repeat: 0, transformorigin: '50% 50%'};
var w = parseFloat(link.css('width'));
var cx = w / 2;
var h = parseFloat(link.css('height'));
}
to.yoyo = animation.yoyo === true || animation.yoyo === 1 || animation.yoyo === '1' || animation.yoyo === 'true';
to.repeat = parseInt(animation.repeat);
+ to.repeatDelay = parseFloat(animation.repeatDelay);
+
var css = {};
animation.ease = this.fixEase(animation.ease);