Difference between revisions of "Template:Technion/Javascript"

Line 43: Line 43:
 
}
 
}
 
 
$(".dropdown").hover(function()
+
/*$(".dropdown").hover(function()
 
{
 
{
 
hover_flag = true;
 
hover_flag = true;
Line 55: Line 55:
 
$(".dropdown nav").css("max-height", "0px");
 
$(".dropdown nav").css("max-height", "0px");
 
}
 
}
});
+
});*/
 
});
 
});

Revision as of 14:51, 21 August 2015

$(document).ready(function() {

var scroll_flag; var hover_flag = $(".dropdown").is(":hover");

if (window.scrollY >= 450) { scroll_flag = 1; } else { scroll_flag = 0; }

if (scroll_flag == 1) { $(".dropdown nav").css("max-height", "0px"); } else { $(".dropdown nav").css("max-height", "999px"); }


window.onscroll=function() { if (window.scrollY >= 450) { scroll_flag = 1; } else { scroll_flag = 0; } if ((hover_flag == false) && (scroll_flag == 1)) { $(".dropdown nav").css("max-height", "0px"); } else { $(".dropdown nav").css("max-height", "999px"); } }

/*$(".dropdown").hover(function() { hover_flag = true; $(".dropdown nav").css("max-height", "999px");' },

function() { if(scroll_flag == 1) { $(".dropdown nav").css("max-height", "0px"); } });*/ });