【发布时间】:2015-12-15 16:22:57
【问题描述】:
我正在尝试在 iframe 中显示全屏网站,尽管垂直滚动在 iOS 移动设备上不起作用(在 safari、chrome 上测试)。
我正在使用
<style>
iframe {
border: 0;
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
width:100%;
height:100%
-webkit-overflow-scrolling:touch;
overflow:auto;
}
</style>
<div style="-webkit-overflow-scrolling:touch;">
<iframe src="http://www.neti.ee/">
</div>
使用-webkit-overflow-scrolling:touch;据说可以解决问题,但对我不起作用。这可能是什么原因造成的?
【问题讨论】:
标签: jquery html ios css iframe