Open Shenglian opened 6 years ago
Improving_scrolling_performance_with_passive_listeners
document.addEventListener('touchmove', function(e) { e.preventDefault(); }, { passive: false });
原因: This is because document touch event listeners are now passive by default in Safari 11.1, which is bundled with iOS 11.3. This change is documented in the Safari 11.1
This is because document touch event listeners are now passive by default in Safari 11.1, which is bundled with iOS 11.3. This change is documented in the Safari 11.1
Improving_scrolling_performance_with_passive_listeners
原因:
This is because document touch event listeners are now passive by default in Safari 11.1, which is bundled with iOS 11.3. This change is documented in the Safari 11.1