jQuery 屏幕分辨率高度调整
为了更好地平衡我正在处理的页面,我想找到一种方法来根据屏幕分辨率增加 DIV 的上边距。 使用 jQuery 或 Javascript 设置这些尺寸的最佳方法是什么?
In order to better balance out a page I am working on I would like to find a way to increase the top margin of a DIV depending on the screen resolution. What is my best way to set these dimensions with jQuery or Javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
要在 JS 中获取屏幕分辨率,请使用
screen
对象根据该值,您可以计算适合您的利润。
To get screen resolution in JS use
screen
objectBased on that values you can calculate your margin to whatever suits you.
垂直和水平居中的 div 或任何对象的另一个示例:
Another example for vertically and horizontally centered div or any object(s):
查看 jQuery 维度插件
Check out the jQuery dimensions plugin
下面是一个关于如何使用 jQuery 将对象垂直居中的示例:
但是您可以轻松地将其更改为您需要的任何内容。
Here is an example on how to center an object vertically with jQuery:
But you could easily change that to whatever your needs are.