我需要扩大 iframe 以使其更大(我无法控制 iframe 内容的源代码)。我正在尝试通过-webkit-transform: scale(1.3)
CSS 属性来实现它。
iframe 的内容已正确放大,但是当我尝试触摸 iframe 中的任何控件时,似乎在错误的位置接收到触摸事件(我可以看到控件的“阴影”在触摸错误的位置)。因此事件处理程序不起作用(我怀疑它们没有被调用,因为在错误的位置检测到触摸)。有人遇到过这个问题吗?可以解决吗?
我创建了一个产生问题的测试用例(在 iPad Safari 中尝试):http: //jsfiddle.net/9vem2/
以更易读的格式来源:
父页面(iframe 的容器):
<!DOCTYPE html>
<html>
<head>
<title>Parent</title>
<style type="text/css">
iframe
{
left: 200px;
-webkit-transform: scale(1.3);
}
</style>
</head>
<body>
<h2>Parent</h2>
<iframe src="child.html"></iframe>
</body>
</html>
子页面(iframe 内容):
<!DOCTYPE html>
<html>
<head>
<title>Child</title>
</head>
<body>
<h2>Child</h2>
<input type="text"></input>
<button onclick="alert('hello');">Button</button>
</body>
</html>