Добрый день, в общем понадобилось для меню Superfish сделать плавное исчезновение, посмотрел документацию
$('ul.sf-menu').superfish({ hoverClass: 'sfHover', // the class applied to hovered list items pathClass: 'overideThisToUse', // the class you have applied to list items that lead to the current page pathLevels: 1, // the number of levels of submenus that remain open or are restored using pathClass delay: 800, // the delay in milliseconds that the mouse can remain outside a submenu without it closing animation: {opacity:'show'}, // an object equivalent to first parameter of jQuery’s .animate() method speed: 'normal', // speed of the animation. Equivalent to second parameter of jQuery’s .animate() method autoArrows: true, // if true, arrow mark-up generated automatically = cleaner source code at expense of initialisation performance dropShadows: true, // completely disable drop shadows by setting this to false disableHI: false, // set to true to disable hoverIntent detection onInit: function(){}, // callback function fires once Superfish is initialised – 'this' is the containing ul onBeforeShow: function(){}, // callback function fires just before reveal animation begins – 'this' is the ul about to open onShow: function(){}, // callback function fires once reveal animation completed – 'this' is the opened ul onHide: function(){} // callback function fires after a sub-menu has closed – 'this' is the ul that just closed
});
и как понял для плавного исчезновения нужно задействовать функцию onShow:function(){},
сделал вот так
jQuery('ul.sf-menu').superfish({ delay: 500, // one second delay on mouseout animation: {height: 'fade', opacity: 'show'}, speed: 'slow', // faster animation speed autoArrows: false, // disable generation of arrow mark-up dropShadows: false, disableHI: true, onHide: function(){ $(this).animate({ opacity: 'hide' },1000); } });
но меню всё равно исчезает резко...что делаю не так?
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
inex
Добрый день, в общем понадобилось для меню Superfish сделать плавное исчезновение, посмотрел документацию
и как понял для плавного исчезновения нужно задействовать функцию onShow:function(){},
сделал вот так
но меню всё равно исчезает резко...что делаю не так?
Заранее спасибо!
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.