我正在尝试在html中嵌入pdf文件,并找到了3种方法:
<embed src="mypdf.pdf" width="500px" height="400px" />
<iframe src="mypdf.pdf" width="auto%" height="auto"></iframe>
<object data="mypdf.pdf" width="100%" height="100%" type="application/pdf" />
但似乎没有人可以自动将pdf viewer调整为pdf大小。 有没有更好的方法根据pdf文件的宽度和高度调整pdf查看器大小? 谢谢。