`-webkit-overflow-scrolling: touch` broken for initially offscreen elements in iOS7

前端 未结 2 447
野性不改
野性不改 2020-12-02 09:00

Seeing as GM seed has been released, we can talk about it now!

Looks like in iOS7 \"-webkit-overflow-scrolling: touch\" is broken. touch events for elements that ar

2条回答
  •  眼角桃花
    2020-12-02 09:44

    The above answer works a treat for me. Here is the jQuery version of the above fix:

    $('#scrollbox').on('touchstart', function(event){});
    

提交回复
热议问题