1.放大缩小问题 在页面中的head标签中添加 meta 标签即可

<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />

2.页面拖动反弹 在页面中的head标签中添加 style 即可

    html,body{
      overflow: hidden;
      height: 100%;
      position: fixed;
      left: 0;
      top: 0;
    }