- Posts: 2
- Thank you received: 0
Wiggy Menu Action
-
greyson72
Inactive member - Topic Author
- New Member
Less
More
14 years 1 month ago #4125
by greyson72
Wiggy Menu Action was created by greyson72
I have the Hot Skies template located at
www.antelopeweb.com/~abupaul
I am having real trouble with the menu. it is very sensitive and sometimes when you mouse over an item on the top menu the dropdown will "rubberband" open and shut 3 or 4 times until you move the mouse out of the mouseover area.
Any help will be appreciated
I am having real trouble with the menu. it is very sensitive and sometimes when you mouse over an item on the top menu the dropdown will "rubberband" open and shut 3 or 4 times until you move the mouse out of the mouseover area.
Any help will be appreciated
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
14 years 1 month ago #4129
by ivan.milic
Replied by ivan.milic on topic Re: Wiggy Menu Action
Try this:
www.antelopeweb.com/~abupaul/templates/hot_skies/js/menu.js
rewrite source with this source:
var _AnimatedMenuItem = null;
function mainmenu(){
$(" #nav ul ").css({display: "none"}); // Opera Fix
$(" #nav li").hover(function(){
if (_AnimatedMenuItem != null) {
_AnimatedMenuItem.stop(true, true);
}
$(this).find('ul:first').show(400);
_AnimatedMenuItem = $(this).find('ul:first');
},function(){
if (_AnimatedMenuItem != null) {
_AnimatedMenuItem.stop(true, true);
}
$(this).find('ul:first').hide(400);
_AnimatedMenuItem = $(this).find('ul:first');
});
}
$(document).ready(function(){
mainmenu();
});
www.antelopeweb.com/~abupaul/templates/hot_skies/js/menu.js
rewrite source with this source:
var _AnimatedMenuItem = null;
function mainmenu(){
$(" #nav ul ").css({display: "none"}); // Opera Fix
$(" #nav li").hover(function(){
if (_AnimatedMenuItem != null) {
_AnimatedMenuItem.stop(true, true);
}
$(this).find('ul:first').show(400);
_AnimatedMenuItem = $(this).find('ul:first');
},function(){
if (_AnimatedMenuItem != null) {
_AnimatedMenuItem.stop(true, true);
}
$(this).find('ul:first').hide(400);
_AnimatedMenuItem = $(this).find('ul:first');
});
}
$(document).ready(function(){
mainmenu();
});
Please Log in to join the conversation.
Time to create page: 0.154 seconds