苹果机没有滚动条解决方案
时间:2018-05-30 21:35:20
收藏:0
阅读:1472
有时候我们移动端,安卓机能够显示滚动条,并且可以滑动,但是苹果机却没有滚动条,并且不能滑动,废话不多说,直接上代码
-webkit-overflow-scrolling: touch;

<style>
div {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
-webkit-overflow-scrolling: touch;
/* 当手指从触摸屏上移开,会保持一段时间的滚动 */
overflow-y: scroll;
}
iframe {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div>
<iframe frameborder="0" src="gamelist.html" name="lobby" scrolling="yes"></iframe>
</div>
</body>
评论(0)