Disable Skrollr for mobile device ( <767px )

后端 未结 6 2140
暖寄归人
暖寄归人 2021-02-02 01:59

Firstly would like to thanks @prinzhorn for such an amazing and powerful library. My question: I have implemented a Skrollr parallax background to the header of my website but I

6条回答
  •  渐次进展
    2021-02-02 02:42

    In some cases you just disable the transitions:

    @media only screen and (max-width: 480px){
        .divWithSkrollr{
            transform: none !important;
        }
    }
    

提交回复
热议问题