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

Lines Matching refs:morph

7640 	Contains the CSS animation logic. Used by Fx.Tween, Fx.Morph, Fx.Elements.
7870 Script: Fx.Morph.js
7877 Fx.Morph = new Class({
7912 Element.Properties.morph = {
7915 var morph = this.retrieve('morph');
7916 if (morph) morph.cancel();
7917 return this.eliminate('morph').store('morph:options', $extend({link: 'cancel'}, options));
7921 if (options || !this.retrieve('morph')){
7922 if (options || !this.retrieve('morph:options')) this.set('morph', options);
7923 this.store('morph', new Fx.Morph(this, this.retrieve('morph:options')));
7925 return this.retrieve('morph');
7932 morph: function(props){
7933 this.get('morph').start(props);