Return to Snippet

Revision: 53147
at November 15, 2011 03:06 by wchimiak


Initial Code
$(".sidebar-hover li a, ul.menu li ul li a").hover(function() {
           $(this).stop().animate({
               borderWidth: "10px",
               borderLeftColor: "#47D322"
               }, 150);
       },function() {
           $(this).stop().animate({
               borderWidth: "0px",
               borderLeftColor: "#202020"
               }, 150);
           });
});

Initial URL

                                

Initial Description

                                

Initial Title
Hover animation

Initial Tags

                                

Initial Language
jQuery