Created
August 19, 2011 19:00
-
-
Save tjboudreaux/1157693 to your computer and use it in GitHub Desktop.
Javascript to animate menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
$('#header #main_menu li').hover(function(){ | |
$(this).find("a .button").animate({top:'30px'},"50", function(){ | |
$(this).parent().parent().find(".submenu").show().animate({right:'110px'},{queue:false,duration:100}); | |
}); | |
}, function(){ | |
$(this).find(".submenu").animate({right:'0px'},"50", function(){ | |
$(this).hide(); | |
$(this).parent().find("a .button").animate({top:'0px'},"50"); | |
}); | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="flashcontent" style="position:relative; border:1px solid red;display:block; width:990px; margin:0px auto; "> | |
<div id="header"> | |
<a id="logo" href="/"><h1>Kfx2 - Baton Rouge Mobile Design and Software Development</h1></a> | |
<div id="header_date"><span class="date">Friday, August 19th, 2011</span></div> | |
<ul id="main_menu"> | |
<li><a href="#"><div class="button"><span>Company</span></div></a> | |
<div class="submenu"> | |
<ul> | |
<li><a href=""><span>Overview</span></a></li> | |
<li><a href=""><span>Why Us</span></a></li> | |
<li><a href=""><span>Testimonials</span></a></li> | |
<li><a href=""><span>Careers</span></a></li> | |
<li><a href=""><span>News</span></a></li> | |
<li><a href=""><span>Blog</span></a></li> | |
<li><a href=""><span>Community Involvement</span></a></li> | |
</ul> | |
</div> | |
</li> | |
<li><a href="#"><div class="button"><span>Portfolio</span></div></a> | |
<div class="submenu"> | |
<ul> | |
<li><a href=""><span>Overview</span></a></li> | |
<li><a href=""><span>Why Us</span></a></li> | |
<li><a href=""><span>Testimonials</span></a></li> | |
<li><a href=""><span>Careers</span></a></li> | |
<li><a href=""><span>News</span></a></li> | |
<li><a href=""><span>Blog</span></a></li> | |
<li><a href=""><span>Community Involvement</span></a></li> | |
</ul> | |
</div> | |
</li> | |
<li><a href="#"><div class="button"><span>Solutions</span></div></a> | |
<div class="submenu"> | |
<ul> | |
<li><a href=""><span>Overview</span></a></li> | |
<li><a href=""><span>Why Us</span></a></li> | |
<li><a href=""><span>Testimonials</span></a></li> | |
<li><a href=""><span>Careers</span></a></li> | |
<li><a href=""><span>News</span></a></li> | |
<li><a href=""><span>Blog</span></a></li> | |
<li><a href=""><span>Community Involvement</span></a></li> | |
</ul> | |
</div> | |
</li> | |
<li><a href="#"><div class="button"><span>Contact</span></div></a> | |
<div class="submenu"> | |
<ul> | |
<li><a href=""><span>Overview</span></a></li> | |
<li><a href=""><span>Why Us</span></a></li> | |
<li><a href=""><span>Testimonials</span></a></li> | |
<li><a href=""><span>Careers</span></a></li> | |
<li><a href=""><span>News</span></a></li> | |
<li><a href=""><span>Blog</span></a></li> | |
<li><a href=""><span>Community Involvement</span></a></li> | |
</ul> | |
</div> | |
</li> | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment