Difference between revisions of "Template:Technion/Javascript"
Line 26: | Line 26: | ||
{ | { | ||
hover_flag = true; | hover_flag = true; | ||
− | $(".dropdown nav").css("max-height", "999px"); | + | $(".dropdown nav").css("max-height", "999px"); |
}, | }, | ||
Revision as of 14:58, 21 August 2015
$(document).ready(function() {
var scroll_flag; var hover_flag;
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"); }
$(".dropdown").hover(function()
{
hover_flag = true;
$(".dropdown nav").css("max-height", "999px");
},
function() { hover_flag = false; if(scroll_flag == 1) { $(".dropdown nav").css("max-height", "0px"); } });
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"); } }
});