Iframe框架在pc端可以滚动,但是在手机端由于和页面滚动冲突导致滚动无法被触发。
解决办法:
iframe外面需要一个容器,添加css
css代码:
.container{
height:100px;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.frame{
width:100%;
height:100%;
}
html代码:
<div class="container">
<iframe class="frame" src="框架地址">
</div>
Tag:
移动端
手机