Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1146518

    Hi,
    I roamed the forum for an answer and the only ones are from 2015, the file structure is not the same. How can I make the dropdowns appear and disappear faster? The animation overlaps, if you have a megamenu and a regular dropdown next to eachother.

    Thanks in advance.

    #1147691

    Hey midfieldco,

    Thank you for the inquiry.

    You have to modify the js > avia-snippet-megamenu.js file directly in order to adjust the dropdown animation speed. Look for this code around line 207:

    currentLink.on('mouseenter', function()
    {
    	sublist.stop().css({visibility:'visible'}).animate({opacity:1});
    });
    

    Add the duration of the animate function in milliseconds.

    ccurrentLink.on('mouseenter', function()
    {
    	sublist.stop().css({visibility:'visible'}).animate({opacity:1}, 100);
    });
    

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.