嵌入在 iframe 中的 html5 pdf 文件无法在 ios 中滚动

5 html pdf safari iframe

我有一个用于显示文本和 pdf 文件的 iframe。它在 chrome、ie 和 mozilla 中完美运行。但我尝试在 ipad 的 safari 中加载相同的内容。pdf无法滚动。附上相同的代码。

.docviewer-wrapper{
  -webkit-overflow-scrolling: touch;
  	overflow-y: scroll;
}
iframe {
  height: 100%;
  width: 100%;
}
Run Code Online (Sandbox Code Playgroud)
<div class="container docviewer-wrapper">
		<iframe id="docvieweriframe" src="http://www.pdf995.com/samples/pdf.pdf"></iframe>
	</div>
Run Code Online (Sandbox Code Playgroud)

请帮我。

小智 0

尝试为 docviewer-wrapper 类提供高度和宽度