移动端页面优化的一些操作:

1.多for Mobile的HTML5网页内都有快速滚动和回弹的效果

解决办法:

-webkit-overflow-scrolling : touch;  

使用方法:

html,body{
   -webkit-overflow-scrolling: touch;
  }

2.Fastclick组件

用来解决:(待进一步研究)

使用示例:(vue项目的main.js中)

import Fastclick from 'fastclick'

if ('addEventListener' in document) {
  let a = Fastclick
  document.addEventListener('DOMContentLoaded', function () {
    a.attach(document.body)
  }, false)
}
console.log(Fastclick)
原文地址:https://www.cnblogs.com/benbendu/p/8214930.html