background attachment: fixed not working on android/ios

前端 未结 4 1470
暗喜
暗喜 2021-01-07 01:44

This is my code:

4条回答
  •  难免孤独
    2021-01-07 02:15

    bacground-attachment:fixed;

     .fixed { 
        background: url(img/kid1/1.jpg) no-repeat center center;
        background-attachment:fixed; 
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        }
    

提交回复
热议问题