Return to Snippet

Revision: 23902
at February 16, 2010 15:43 by vagrantradio


Initial Code
// Background color animation 
        $(document).ready(function(){
                $(".first a").hover(function() {
                $(this).animate({ backgroundColor: "#00aadd" }, 600);
        },function() {
                 $(this).animate({ backgroundColor: "#303030" }, 400);
        });

Initial URL


Initial Description


Initial Title
JQUERY NAV HOVER

Initial Tags
css, jquery, animation

Initial Language
jQuery