我想要一个在我的 PC 浏览器上运行的具有固定背景图像(大约 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;
background-size: cover;
}