背景图像放大使用-webkit?
Background image zooms in using -webkit?
有人可以帮忙吗?我不确定我是否在此处发布了正确的测试代码,但基本上我在 body 上使用此代码的背景图片,效果很好,但当我单击任何其他页面时,背景图片会缩放在?
#1a2a40 url(images/deluxe/hmid.jpg) no-repeat 50% 50% fixed; }
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
问题
在index.php
页面上,高度在1000px左右,而在memberlist.php
页面上,高度超过2700px。
可能的解决方案
我认为您应该拆分图片:一张在页面顶部,一张在页面底部,一张 repeated
在页面中间。
使用此设置,您可以拥有不同大小的页面,但具有默认背景图像。
修复页面背景
background-position: 50% 0; background-attachment: fixed;
有人可以帮忙吗?我不确定我是否在此处发布了正确的测试代码,但基本上我在 body 上使用此代码的背景图片,效果很好,但当我单击任何其他页面时,背景图片会缩放在?
#1a2a40 url(images/deluxe/hmid.jpg) no-repeat 50% 50% fixed; }
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
问题
在index.php
页面上,高度在1000px左右,而在memberlist.php
页面上,高度超过2700px。
可能的解决方案
我认为您应该拆分图片:一张在页面顶部,一张在页面底部,一张
repeated
在页面中间。 使用此设置,您可以拥有不同大小的页面,但具有默认背景图像。修复页面背景
background-position: 50% 0; background-attachment: fixed;