Home | History | Annotate | Download | only in parse-only

Lines Matching defs:tween

3264 	Contains the CSS animation logic. Used by Fx.Tween, Fx.Morph, Fx.Elements.
3397 Script: Fx.Tween.js
3404 Fx.Tween = new Class({
3432 Element.Properties.tween = {
3435 var tween = this.retrieve('tween');
3436 if (tween) tween.cancel();
3437 return this.eliminate('tween').store('tween:options', $extend({link: 'cancel'}, options));
3441 if (options || !this.retrieve('tween')){
3442 if (options || !this.retrieve('tween:options')) this.set('tween', options);
3443 this.store('tween', new Fx.Tween(this, this.retrieve('tween:options')));
3445 return this.retrieve('tween');
3452 tween: function(property, from, to){
3453 this.get('tween').start(arguments);
3458 var fade = this.get('tween'), o = 'opacity', toggle;
3482 var tween = this.get('tween');
3483 tween.start('background-color', start || '#ffff88', end).chain(function(){
3485 tween.callChain();