如何在移动网络应用程序中嵌入 PDF

发布于 2024-11-08 13:05:43 字数 429 浏览 4 评论 0原文

我正在尝试将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

☆獨立☆ 2024-11-15 13:05:43

您确实不应该为移动应用程序嵌入 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>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文