superfish icon indicating copy to clipboard operation
superfish copied to clipboard

Way to disable all delays and animations

Open ronilaukkarinen opened this issue 8 years ago • 2 comments

Is there a way to disable all animations and delays? I guess it's intentional that hoverintent creates a slight mouseover delay on first element, although it's a bit annoying. If I set everything to zero, I still get some delays. Cannot set animations to false either in options. Any way possible to disable all animations so that menus would open instantly? with or without hoverIntent.

ronilaukkarinen avatar Aug 29 '17 14:08 ronilaukkarinen

change default speed and speedOut: normal/fast to 1 / 0

$(document).ready(function(){
$('ul.nav').superfish({
    speed: 1,
    speedOut: 0,
});
});

jquimera avatar Jun 30 '18 12:06 jquimera

Hmm, without hoverIntent and setting speed to 1 or 0 it should be pretty much instant.

joeldbirch avatar Nov 20 '18 04:11 joeldbirch