1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| <script language="JavaScript" type="text/javascript">
var timeout = 500;
var closetimer = 0;
function subnav_hide(){
for( var i = 1 ; i <= 4 ; i++ )
{
$("#subnav_0"+i).css("display","none");
}
}
function subnav_timer(){
closetimer = window.setTimeout(subnav_hide, timeout);
}
function subnav_canceltimer(){
if(closetimer)
{
window.clearTimeout(subnav_hide);
closetimer = null;
}
}
$(document).ready(function(){
$("#item_01").mouseover( function() {
subnav_canceltimer();
subnav_hide();
$("#subnav_01").css("display","block");
})
$("#item_01").mouseout( function() {
subnav_timer()
})
$("#item_02").mouseover( function() {
subnav_canceltimer();
subnav_hide();
$("#subnav_02").css("display","block");
})
});
</script> |
Partager