网站背景可调整大小
是否可以在调整浏览器窗口大小时调整网页背景图像的大小?
Is it possible to resize the background image of a webpage as the browser window is resized?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以在调整浏览器窗口大小时调整网页背景图像的大小?
Is it possible to resize the background image of a webpage as the browser window is resized?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
以下代码展示了如何制作跨浏览器背景图片:
The following code shows how to make a cross browser background image:
如果您使用 CSS3,您将有一个名为
background-size
的新属性,您可以像这样使用它来实现您想要的结果:请记住,CSS3 仍然不完全支持所有浏览器(特别是 IE),结果可能会有所不同,具体取决于您查看页面所使用的浏览器。就是说,希望有帮助!
如果您想要更适合浏览器的东西,您可以考虑使用 javascript 解决方案,该解决方案将捕获窗口大小调整并相应地拉伸图像。
If you use CSS3 you have a new property called
background-size
that you can use like this to achieve your desired result:Keep in mind that CSS3 is still not fully supported by all browsers (specially IE) and results may vary depending on which browser you view the page with. That said, hope it helps!
If you want something more browser friendly you could consider a javascript solution that will capture window resizes and stretch the image accordingly.
是的,像这样:
Yes, like this: