搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

I want to remove the pdf toolbar using HTML and CSS. Can I do that?

  • 2 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

I have a client who wants the toolbar for the built in PDF reader removed so that no one can download the PDF displayed on the client's website. Using a text editor, am I able to remove the toolbar?

I have a client who wants the toolbar for the built in PDF reader removed so that no one can download the PDF displayed on the client's website. Using a text editor, am I able to remove the toolbar?
已附加屏幕截图

被采纳的解决方案

Hmm, I don't think you can get rid of that toolbar.

Is the PDF in a frame within a web page, is that how HTML and CSS might be involved? I don't think you can reach inside and modify the viewer from the outside, as it is a privileged page.

While there are URL parameters for things such as page to display, zoom level, and sidebar state, there isn't one to automatically trigger full-screen view since Firefox requires a user action to initiate that.

One option might for the client to embed a custom viewer in the page instead of letting the browser choose how to view the PDF. The latest code of the PDF.js viewer web app is available to the public:

定位到答案原位置 👍 1

所有回复 (2)

more options

选择的解决方案

Hmm, I don't think you can get rid of that toolbar.

Is the PDF in a frame within a web page, is that how HTML and CSS might be involved? I don't think you can reach inside and modify the viewer from the outside, as it is a privileged page.

While there are URL parameters for things such as page to display, zoom level, and sidebar state, there isn't one to automatically trigger full-screen view since Firefox requires a user action to initiate that.

One option might for the client to embed a custom viewer in the page instead of letting the browser choose how to view the PDF. The latest code of the PDF.js viewer web app is available to the public:

more options

Note that hiding the toolbar won't prevent (advanced) users from downloading the PDF file and there is still save page as or save link as in the context menu. As long as the file is requested from the server then you can find its URL even if the file would be loaded via XHR. You could convert the file to an image or render its content on canvas as small blobs using JavaScript.