RSS

Tag Archives: Code

Code for Attractive Menu

File Name: Menu.htm

<script type=”text/javascript” src=”jquery.min.js”></script>

<link rel=”stylesheet” type=”text/css” href=”menustyle.css” />

<script type=”text/javascript”>

$(document).ready(function()
{ $(“#topnav li”).prepend(“<span></span>”);

$(“#topnav li”).each(function()
{ var linkText = $(this).find(“a”).html();

$(this).find(“span”).show().html(linkText); });

$(“#topnav li”).hover(function()
{ $(this).find(“span”).stop().animate
({  marginTop: “-40” }, 250); } , function()
{  $(this).find(“span”).stop().animate
({ marginTop: “0” }, 250); }); }); Read the rest of this entry »

 
1 Comment

Posted by on March 11, 2011 in WWW

 

Tags: , , , , , ,