Disable Skrollr for mobile device ( <767px )

后端 未结 6 2163
暖寄归人
暖寄归人 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:32

    Skrollr has its own mobile check function

    var s = skrollr.init();
    if (s.isMobile()) {
        s.destroy();
    }
    

提交回复
热议问题