Vertical scrolling in iOS not smooth

前端 未结 3 1427
萌比男神i
萌比男神i 2020-12-24 01:58

I\'ve been searching far and wide through documentation regarding -webkit-overflow-scrolling: touch;, but I can only get it to work partially for my

3条回答
  •  再見小時候
    2020-12-24 02:11

    What about applying the -webkit-overflow-scrolling: touch; to all elements of your site:

    * {
        -webkit-overflow-scrolling: touch;
    }
    

    And you should create an extra CSS file instead of using the css attribute.

提交回复
热议问题