JQuery 弹出窗口内的垂直滚动条
我正在关注 http://yensdesign .com/2008/09/how-to-create-a-stunning-and-smooth-popup-using-jquery/ 有关如何制作 jQuery 弹出窗口的教程。 当我单击该按钮时,它将显示一个弹出窗口,其中包含来自特定主题标签的推文,有关如何添加垂直滚动条以使弹出窗口位于屏幕内的任何想法 关于如何添加滚动条有什么想法吗?
I am following
http://yensdesign.com/2008/09/how-to-create-a-stunning-and-smooth-popup-using-jquery/ tutorial on how to make a jQuery pop up window.
when i click on the button , it will display a pop up window with tweets from a particular hashtag , any idea on how to add a vertical scrollbar so that the pop up window will be within the screen
Any idea on how to add a scrollbar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在容器 div 上将
overflow-y:scroll
添加到样式中。还要确保您的推文是显示:阻止的。如果它们是浮动的,请在标记下插入一个清晰的 div,例如
。这会压低高度。
on the container div add
overflow-y:scroll
to the styles.Also make sure your tweet's are display:block. If they're floated, insert a clear div under the markup e.g.
<div style="clear:both;"></div>
. That will push down the height.这是因为使用
overflow: auto
无法管理高度
这将调整 div 容器的高度意味着您的弹出窗口
it is because of unmanageable height use
overflow: auto
that will adjust the height of div container means your popup