html jquery ul li 实现下拉菜单,动态效果卡顿
$("#nav li").hover(function () {
$(this).children(".drop-down").stop().slideDown();
// $(this).find("ul").slideDown();
// $(this).children(".drop-down").animate({height: '230px'});
// $(this).find("ul").fadeIn("fast");
// $(this).find("ul").show();
}, function () {
$(this).children(".drop-down").stop().slideUp();
// $(this).find("ul").hide();
});
网上都说使用stop方法,试了,还是不行
想实现无卡顿,顺滑
这几个参数你修改下,应该解决问题