我发现了许多相关问题,但没有一个答案可以解释如何iframe
在 iOS 4 中使用 2 指方法滚动。
我可以通过设置 a和属性和设置div
来用两根手指滚动 a 。这是一个更完整的示例:width
height
overflow: scroll;
<div style='width: 280px; height: 200px; overflow: scroll; -webkit-overflow-scrolling: touch;'>
Just imagine a bunch of content is in here, spanning well over 200px
worth of height. You can scroll this just fine in iOS 4 by using 2
fingers, or in iOS 5 by swiping 1 finger thanks to
"-webkit-overflow-scrolling: touch;".
</div>
同样的方法不适用于iframes
运行 iOS 4.3 的 iPad 1。这是一个在 iOS 4 中不会用任何手指组合滚动的完整示例(当然,它-webkit-overflow-scrolling
允许它在 iOS5 上工作):
<html>
<head>
<style type="text/css">
#scroller {
width: 280px;
height: 200px;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
#scroller iframe {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="scroller">
<iframe src="content.html">content.html is a big list of nonsense.</iframe>
</div>
</body>
</html>
我必须补充一点,如果我将和设置为实际像素值,例如,我可以让 2 指滚动工作,但我永远不会知道 iframe 的内容有多高。所以,也许真正的问题是如何让 iOS 4 中的移动 Safari 相信其内部确实大于 280x200 像素?width
height
iframe
height: 1000px;
iframe
div