使用中心插件将 jQuery 中心元素设置为视口
我目前正在使用 jQuery center 插件来居中我的 div 元素,到目前为止,它可以在一定范围内将其居中到包含的父容器。我想要它做的是将其居中到当前浏览器视口中心。那怎么办呢?
我的设置是一个简单的链接,单击时会弹出一个 div,就像我希望居中于当前浏览器视口中心的模式一样。
I am currently using the jQuery center plugin to center my div element and so far it works to an extend where it does center it to the containing parent container. What I want it to do is to center it to the current browser viewport center. How can that be done?
My setup is a simple link when clicked, a div will pop up like a modal that I want centered into the current browser viewport center.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
无需插件。这可以解决问题:
现场演示: http://jsfiddle.net/simevidas /EnrLn/1/
同样的事情,但没有 TABLE 元素。我将 DIV 与
display:table
和display:table-cell
结合使用:现场演示: http://jsfiddle.net/simevidas/EnrLn/2/
No plug-in is needed. This does the trick:
Live demo: http://jsfiddle.net/simevidas/EnrLn/1/
Same thing, but without the TABLE element. I use DIV's with
display:table
anddisplay:table-cell
instead:Live demo: http://jsfiddle.net/simevidas/EnrLn/2/
使用
Use