背景附件固定镀铬滞后

Pla*_*Wet 3 css background google-chrome lag

我的网站上的镀铬设计再次出现问题。滚动时不会损失 fps 且页面上不会出现延迟。我已经绕了很多圈才发现问题的真正罪魁祸首是属性background-attachment: fixed;

我尝试使用此页面的解决方案来解决,但对我不起作用。

https://petersproblems.wordpress.com/2014/12/06/background-attachment-fixed-causing-lag-when-scrolling/

我想使用background-attachment: fixed;,没有延迟,有什么解决办法吗?

CSS:

body {
    margin: 0 auto;
    background-image: url(imagen/fondo.jpg);
    background-repeat: repeat-x;
    background-attachment: fixed;
    background-position: top center;
}
Run Code Online (Sandbox Code Playgroud)

小智 5

只需添加-

transform:translatez(0);
-webkit-transform:translatez(0);
Run Code Online (Sandbox Code Playgroud)