My fixed background made scrolling the site very slow, what can I do to improve it?

前端 未结 7 1295
抹茶落季
抹茶落季 2020-12-08 22:38

I changed the background of my discussion forum using the CSS below

http://forum.antinovaordemmundial.com

html {
    background: url(http://antinovao         


        
7条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-08 22:55

    Also, applying the following style to the html tag improves the frame rate significantly in WebKit browsers, Chrome included:

    -webkit-transform: translate3d(0,0,0);
    

    This works in all cases with (large) background photos and choppy scrolling as far as I can tell.

提交回复
热议问题