Quotes help make search much faster. Example: "Practice Makes Perfect"

Wednesday, December 19, 2012

Codecademy Sample Solution: Codeyear Adding the Animation



// sample solution to script.js

$(document).ready(function() {
    $("div.header").click(function(e){
        $(this).next(".content").animate({
            //opacity: 0.25,
            //left: '+=50',
            height: 'toggle'
        }, 250, function() {
            // Animation complete.
        });
    });
});

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts