在 jQuery 中制作 UL 动画(导航)
我使用 UL 和 CSS 制作了导航。子 ul 默认情况下是隐藏的 - 当将鼠标移动到父 LI(即菜单项)上时,我想通过向下滑动来显示子 UL。
实现这一目标的最佳方法是什么?
我目前有这段代码,想知道是否有更好的方法来做到这一点:
$("div.menu ul.children").each(function(i){
var ul = $(this);
var he = ul.height();
ul.height(0);
var li = ul.parent();
li.bind("mouseenter", function(){
ul.animate({height: he+'px'}, {queue:false, duration: 100});
});
li.bind("mouseleave", function(){
ul.animate({height: '0px'}, {queue:false, duration: 100});
});
});
I've made a navigation using an UL and CSS. The children ul's are hidden by default - when moving the mouse over the parent LI (i.e. the menu item), I'd like to display the children UL by sliding it down.
What's the best method to achieve this?
I'm currently having this code and was wondering if there's a better way to do it:
$("div.menu ul.children").each(function(i){
var ul = $(this);
var he = ul.height();
ul.height(0);
var li = ul.parent();
li.bind("mouseenter", function(){
ul.animate({height: he+'px'}, {queue:false, duration: 100});
});
li.bind("mouseleave", function(){
ul.animate({height: '0px'}, {queue:false, duration: 100});
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
类似的事情:
请参阅 http://jsfiddle.net/xfkeM/
Something along these lines:
See http://jsfiddle.net/xfkeM/