我在下拉菜单中使用以下javascript代码。它已默认使用模板。现在我想删除滑动选项,因为它闪烁了很多。我希望该菜单在淡出鼠标后淡出或简单隐藏。
<script type="text/javascript">
var $j = jQuery.noConflict();
$j(document).ready(function(){
$j('.menu-nav li').hover(
function() {
$j(this).addClass("active");
$j(this).find('.ulwrapper').stop(false, true).slideDown();
$j(this).find('.ulwrapper .ulwrapper').stop(false, true).slideUp();
},
function() {
$j(this).removeClass("active");
$j(this).find('div').stop(false, true).slideUp();
}
);
$j('.ulwrapper').hover(function() {
$j('.parent').addClass("active_tab");
}, function() {
$j('.parent').removeClass("active_tab");
});
});
</script>
非常感谢解决方案。
答案 0 :(得分:1)
function() {
$j(this).addClass("active");
$j(this).find('.ulwrapper').stop(false, true).slideDown();
$j(this).find('.ulwrapper .ulwrapper').stop(false, true).fade();
},
function() {
$j(this).removeClass("active");
$j(this).find('div').stop(false, true).fade();
}
希望这会有所帮助: - )