CSS 缩放背景图像
当图像是内容时,我可以缩放图像以填充窗口,如下所示: (没有任何 html5 或 div)
<style type="text/css">
img {
width:100%;
height:100%;
margin:0px;
}
</style>
失败
<img src="wacard.png" alt="original image" title="">
,但是
了(“html,body”和“body”)
<style type="text/css">
body {
width:100%;
height:100%;
margin:0px;
}
</style>
并且
<body
style="background-image: url(wacard.png);">
</body>
从这里拾取: 调整 HTML5 画布大小以适合窗口,但据我了解,这肯定有一些比我知道的更奇特的代码,继续,。 ..或者我做错了什么...
我怎样才能缩放背景图像? (理想情况下,没有 JavaScript)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是一个很棒的教程,其中包含多种解决方案:
http://css-tricks.com/perfect-full-page-background-图片/
完成演示和逐步编码过程。
提到的HTML5方式是:
文章中提到了一个ie修复。
Here is a great tutorial with several solutions:
http://css-tricks.com/perfect-full-page-background-image/
Complete with demos and the step by step coding process.
The HTML5 way mentioned is:
There is an ie fix mentioned in the article.
据我了解,您想要创建一个整页可调整大小的背景。如果是这样,请按照此处的说明操作 => http://css-tricks.com/perfect-full-page-background-图片/
As I understand you want to create a full page re-sizable background. If so, follow the instructions here => http://css-tricks.com/perfect-full-page-background-image/
还要考虑进一步的审查和选项,就像我的例子一样,设置选项的值
...
http://developer.mozilla.org/en-US/docs/Web/CSS/background-position
以及
https://developer.mozilla.org/en-US/docs/Web /CSS/background-origin
伴随backgroundbackground-image CSS样式设置。
Also consider for further review and options, as in my case, the value of the
setting options...
http://developer.mozilla.org/en-US/docs/Web/CSS/background-position
and also
https://developer.mozilla.org/en-US/docs/Web/CSS/background-origin
that accompany the backbackground-image CSS style setting.
afaict,添加了背景图像,
例如
背景:url(back.jpg) 固定;
使其缩放所需的一切,就是
少即是多。 ;)
afaict, with a background image added
e.g.
background: url(back.jpg) fixed;
all that's needed to make it scale, is
less is more. ;)