Jump to content

Menu on hover slideDown() and slideUp() after mouseout


konrad_151

Recommended Posts

Co zrobić żeby menu z kategoriami po najechaniu myszką wysuwało się za pomocą jquery slideDown() ?

 

napisałem coś takiego, da się to w ogóle zmienić ?

 

$menu = $('.sf-menu').children().last().prev();
$submenu = $menu.children().last();
 
$menu.mouseenter(function(){
$submenu.slideDown();
});
Link to comment
Share on other sites

ok poradziłem sobie z tym, wystarczyło zmienić w pliku \themes\default-bootstrap\js\modules\blocktopmenu\js\superfish-modified.js na samym dole
 
animation: {height: 'show'}, - ustawiłem height:'show' zamiast opacity:'show'.
animationOut: {height: 'hide', opacity: 'hide'}, - ustawilem dodatkowo height: 'hide' opacity zostawiłem bo według mnie lepiej to wygląda, temat do zamknięcia :)

Edited by konrad_151 (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...