解决ios下iframe不能滑动

.scroll-wrapper { width: 100%;
    /* height: calc(100% - 43px);  */
    -webkit-overflow-scrolling: touch; overflow-y: scroll; }
.scroll-wrapper iframe { height: 100%; vertical-align:bottom;
   overflow: scroll;
   -webkit-overflow-scrolling: touch;
   min-width: 100%;
   *width:100%;
   width:1px;
}
<div class="scroll-wrapper" id="scrollWrapper">
    <iframe id="iframe" frameborder="0" height='100%' :src="target"></iframe>
</div>
原文地址:https://www.cnblogs.com/zhangxusong/p/14888292.html