How to make animated menu in jquery

Animation is always the requirment for web designing, Flash is now outdated so we use jquery for animation, this is a simple tutorial of making animated menu in jquery.Just copy paste the following code and you are done.

CSS

#menu
{
 margin:0px;
 padding:0px;
 list-style:none;
}
#menu li
{
 float:left;
}
#menu li a
{
 display:block;
 height:50px;
 background:#330066;
 color:#fff;
 line-height:50px;
 text-decoration:none;
 padding:0px 20px;
 text-transform:uppercase;
 
}
#menu li a:hover
{
 background:#000;
}

Jquery



HTML


Download File Used in this example View Live Demo

Total Downloads:

No comments:

Post a Comment