我想有一个固定的背景图像(大约46k)的网站,工作在我的个人电脑浏览器。
然而,当在我的移动浏览器上滚动时,它花了大约一秒的时间重新绘制背景图像。
有什么办法解决这个问题吗?谢谢
这是我的css:
html, body {
background: url('/assets/img/bg.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
ba
我的委托人想为她的新网站提供全屏背景。设置并不那么复杂,因为我选择了CSS3方法,并对较旧的IE版本进行了后备。下面是CSS:
html {
/* Fullscreen backgroung image per CSS3 with 'background-size: cover' */
background: url(../images/background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cove
我正在尝试使用css使html元素具有背景图像,但是如果没有文本,背景就没有背景图像。
CSSS -
#box {
background url(.....)
}
HTML -
<div id="box">something</div> // this works bu it shows the text
<div id="box"></div> // this is what i want not text just the background url from #box
谢谢