如何在移动网络应用程序中嵌入 PDF
我正在尝试将 pdf 嵌入到我的移动网络应用程序中,但似乎无法让 pdf 自动缩放到设备的宽度。
我有以下代码来显示pdf。
<embed type="application/pdf" width="100%" height="100%" src="file.pdf" />
如果我删除视口规范,pdf 会正确缩放,所以我想知道是否应该更改一个值以使其能够正确显示?
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=0;" />
任何帮助都会很棒, 谢谢
I am trying to embed a pdf in my mobile web app and I can't seem to get the pdf to automatically scale to the width of the device.
I have the following code to show the pdf.
<embed type="application/pdf" width="100%" height="100%" src="file.pdf" />
If I remove the viewport specification the pdf scales correctly so I am wondering if there is a value I should be changing in this that would allow it to show correctly?
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=0;" />
Any help would be great,
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确实不应该为移动应用程序嵌入 PDF。让手机的本机功能来处理 PDF 的显示。
PDF
You really shouldn't be embedding PDF's for a mobile app. Let the phone's native capabilities handle displaying a PDF.
<a target="_blank" href="file.pdf">PDF</a>