Difference between revisions of "Template:Technion/Javascript"
Line 2: | Line 2: | ||
var scroll_flag; | var scroll_flag; | ||
− | var hover_flag | + | var hover_flag; |
if (window.scrollY >= 450) | if (window.scrollY >= 450) | ||
Line 23: | Line 23: | ||
+ | $(".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() { | window.onscroll=function() { | ||
Line 43: | Line 57: | ||
} | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
}); | }); |
Revision as of 14:57, 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"); } }
});