Is it possible to have Timing considerations for Mega menus Displayed on Hover? I see hoverIntent.js in the Joomla(3.x) module of mega menu but not sure which settings can enable it or is there some custom script required?
Last edit: 5 years 2 months ago by Conor Quinlan. Reason: topic icon change
Hi
Thank you for feedback us
I'm sorry but I don't understand problem
You can describe the problem in more detail or send me one image of the problem via:
prnt.sc/
I will check it for you soon
Thanks
Not to make response time for a mega menu be too fast: the mouse should remain stationary for 0.5 seconds before you display anything that's hover-dependent, such as a mega menu or a tooltip. Violating this guideline will make the screen flicker insufferably when users move the mouse. Only after 0.5 seconds of resting the pointer on a navbar item, script should assume that a user actually wants to see its associated dropdown and hence display it within 0.1 second.
Thus, the timing should be:
Wait 0.5 seconds.
If the pointer is still hovering over a navbar item, display its mega menu within 0.1 seconds.
Keep showing it until the pointer has been outside both the navbar item and the drop-down for 0.5 seconds. Then, remove it in less than 0.1 seconds.