Guys.. Having a small issue in downgrading the following code from mootools 1.3 to 1.11. I hit the road block as i am not much familiar with the Mootools Effects. Pl help me rewrite this code

            var first = this.pContent.getFirst(),    

    last = this.pContent.getLast()   //this is actually a div


    // The previous node (old page) is moving either 750 or -750

    // shift left = -750, shift right = 750

    if(first!=last) {

    var firstLeft = this.convert(last.getStyle('left').replace('px',''));

    first.set('morph', {duration: this.options.duration, transition: this.options.transition, onComplete: function () { first.destroy(); }});

        first.morph({left:[0, firstLeft], opacity:0});

    }

    // The last node (new page) is always moving to 0px

    last.set('morph', {duration: this.options.duration, transition: this.options.transition});

    last.morph({left:0});
link|improve this question
1  
stackoverflow.com/tags/mootools/info has links to old 1.11 docs. look for Fx.Styles which Fx.Morph replaced. – Dimitar Christoff Apr 12 '11 at 21:26
I will surely try this... – Ramesh Elamathi Apr 13 '11 at 18:10
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.