Template:Team:Groningen/Header

From 2010.igem.org

(Difference between revisions)
Line 40: Line 40:
$(document).ready(function() {
$(document).ready(function() {
$("#contentWrapper").css('height', $("#otherContent").outerHeight() + "px");
$("#contentWrapper").css('height', $("#otherContent").outerHeight() + "px");
-
$("ul#topnav li").find("span").stop().fadeTo('normal', 0).hide();
 
$("ul#topnav li").hover(function() {  
$("ul#topnav li").hover(function() {  
$(this).css({ 'background' : '#1376c9 url(https://static.igem.org/mediawiki/2010/2/29/Groningen_topnav_active.gif) repeat-x'});
$(this).css({ 'background' : '#1376c9 url(https://static.igem.org/mediawiki/2010/2/29/Groningen_topnav_active.gif) repeat-x'});
-
$(this).find("span").stop().fadeTo('normal', 1).show();
+
$(this).find("span").show();
} , function() {  
} , function() {  
$(this).css({ 'background' : 'none'}); //on hover out...
$(this).css({ 'background' : 'none'}); //on hover out...
-
$(this).find("span").stop().fadeTo('normal', 0 , function() { $(this).hide() });  
+
$(this).find("span").hide();
});
});

Revision as of 15:11, 27 October 2010