Is there anyway to fix the bouncing menu? cause if i hover over a dropdown menupoint for 2-3 times the menu is dropdown 2-3 times too like bouncing and its really messy

Comments

sada1988’s picture

ravis’s picture

Please follow these steps to disable bounce effect on hover from drop down menu:

  1. open templates/html.tpl.php in any text editor
  2. Find and delete following codes:
    <script type="text/javascript">
    jQuery(document).ready(function () {	
    jQuery('.navigation li').hover(
    	function () {
    		jQuery('ul', this).slideDown('slow', 'easeOutBounce');
    	}, 
    	function () {
    		jQuery('ul', this).slideUp();	
    	}
    );
    });
    </script>
    
  3. Save html.tpl.php file.

Done!!

For faster response, please ask your issues on our dedicated support forum: http://drupar.com/support

ravis’s picture

Assigned: Unassigned » ravis
Category: Bug report » Support request
Status: Active » Closed (fixed)
sada1988’s picture

Status: Closed (fixed) » Needs work

Okay but this isn't the problem this delete code only disable bouncing but if you hover over the button multiple times the button slide down multiple times , just try it hover over a dropdown menu item fast 2-3-4times and the menus is up-down-up-down-up-down not so good :/

So the exact problem is the multiple dropdown like if the jquery put the hover action in a queue and then play it .

As i see the jquery menu dropdown part need a wait command while the dropdown is going and not record more hover over action and more dropdown action.