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

Lines Matching defs:morph

3264 	Contains the CSS animation logic. Used by Fx.Tween, Fx.Morph, Fx.Elements.
3494 Script: Fx.Morph.js
3501 Fx.Morph = new Class({
3536 Element.Properties.morph = {
3539 var morph = this.retrieve('morph');
3540 if (morph) morph.cancel();
3541 return this.eliminate('morph').store('morph:options', $extend({link: 'cancel'}, options));
3545 if (options || !this.retrieve('morph')){
3546 if (options || !this.retrieve('morph:options')) this.set('morph', options);
3547 this.store('morph', new Fx.Morph(this, this.retrieve('morph:options')));
3549 return this.retrieve('morph');
3556 morph: function(props){
3557 this.get('morph').start(props);