我正在使用<object>
将PDF嵌入到页面中。我希望PDF只显示页面的一部分,我希望整个第一页显示在可见区域(类似于第一页的图像快照)。我正在使用PDF open parameters,我看到了调整zoom
和view
的各种示例,例如:
http://example.org/doc.pdf#page=3&zoom=200,250,100
http://example.org/doc.pdf#page=72&view=fitH,100
我无法让这些工作。当我更改page
参数时,显示的页面会发生变化,但我无法弄清楚如何调整视图。
JS Fiddle demo showing the issue 即可。以及嵌入代码的示例:
<object width="300" height="375" type="application/pdf" data="file.pdf?#page=2&zoom=100">
<p>Message for non-compatible browsers</p>
</object>
我看到了这个问题:Initial Zoom Parameter for PDF Object in HTML5,但答案对我没有帮助。