小智 27
如果您问如何调整PDF大小以适合Iframe.
以下代码可能有所帮助:
<iframe src="name.pdf#zoom=50" height="100%" width="100%"></iframe>
Run Code Online (Sandbox Code Playgroud)
通过添加#zoom=50
它将显示PDF格式,默认情况下在iframe中放大.(这可以编辑成你想要的任何数字)
小智 6
在 Firefox 中对我来说它是这样工作的,但不要在其他设备上测试它
<iframe src="filename.pdf#zoom=FitH" style="position:absolute;right:0; top:0; bottom:0; width:100%;"></iframe>
Run Code Online (Sandbox Code Playgroud)