JQuery 弹出窗口内的垂直滚动条

发布于 2024-12-25 18:29:32 字数 391 浏览 0 评论 0原文

我正在关注 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?
enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

贵在坚持 2025-01-01 18:29:32

在容器 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.

潜移默化 2025-01-01 18:29:32

这是因为使用 overflow: auto
无法管理高度
这将调整 div 容器的高度意味着您的弹出窗口

it is because of unmanageable height use overflow: auto
that will adjust the height of div container means your popup

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文