jQuery - 单击按钮时更改 Div 的高度
我已经在这个网站上搜索了一段时间,但找不到解决我的问题的方法。基本上我在 Div 中有一个无序列表 jQuery 下拉菜单,并且动态拉动的菜单对于页面来说可能太长,所以我想限制 div 的宽度,以便菜单被迫到第二行。
我需要 jQuery 做的就是在单击“查看更多”按钮时将 div 的大小从 36px 动画化到 72px。
只是一个基本的例子:
<a href="#" id="button">View More</a>
<div class="container">
<ul id="nav">
<li>Option 1
<ul><li>Sub Option 1</li></ul>
</li>
等等。
任何帮助将不胜感激。
谢谢。
I've searched this site for awhile and can't find a solution to my problem. Basically I have an unordered list jQuery drop down menu inside a Div and the menu which is being pulled dynamically can be too long for the page so I want to limit the width of the div so the menu is forced to a second line.
All I need the jQuery to do is animate the size of the div from 36px to 72px when a View More button is clicked.
Just a basic example:
<a href="#" id="button">View More</a>
<div class="container">
<ul id="nav">
<li>Option 1
<ul><li>Sub Option 1</li></ul>
</li>
and so on.
Any help would be greatly appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
.animate()
是您正在寻找的:http://api.jquery .com/animate/编辑
现场小提琴 http:// jsfiddle.net/jomanlk/JJh9z/1/
.animate()
is what you're looking for : http://api.jquery.com/animate/EDIT
Live fiddle here http://jsfiddle.net/jomanlk/JJh9z/1/