小程序 iOS webview 中网页使用 iframe 无法滚动问题

dom 结构

  <div class="iframeWrap">
    <iframe class="iframe" v-bind="$attrs" scrolling="auto" :src="localUrl"></iframe>
  </div>

 

 

css 样式

.iframeWrap {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  iframe{
    width: 100%;
    height: 100%;
  }
}

 

posted @ 2021-02-04 17:47  savokiss  阅读(507)  评论(0编辑  收藏  举报