Code I am currently referencing:
$("#Menu-header").hover(function() {
$("#Menu-content").animate({ opacity: "show", height: "show" }, "slow");
});
// mouse leaves the content area
$("#Menu-content").mouseleave(function() {
setTimeout(function() {
$("#Menu-content").animate({ opacity: "hide", height: "hide" }, 900);}, 1000);
});
Resources:
No comments:
Post a Comment