這個不叫拖動(drag),叫做 bounce scrolling,目前不知道中文翻譯。 圖中是微信利用 bounce scrolling 特性,顯示網頁來源。 想要禁用這個,只需要 touchmove: e.preventDefault(); 如果內容還需要 scroll 的話,放到一個 div { overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch } 中,並選擇性屏蔽 touchmove 事件。 也可以像我一樣完全自己處理 scroll,完美解決各種關於 scroll 的問題: https://bumfo.github.io/overflow.html
這個不叫拖動(drag),叫做 bounce scrolling,目前不知道中文翻譯。
圖中是微信利用 bounce scrolling 特性,顯示網頁來源。
想要禁用這個,只需要 touchmove: e.preventDefault();
如果內容還需要 scroll 的話,放到一個 div { overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch } 中,並選擇性屏蔽 touchmove 事件。
也可以像我一樣完全自己處理 scroll,完美解決各種關於 scroll 的問題:
https://bumfo.github.io/overflow.html