Reputation: 516
I am using pdfjs-dist module to display pdf file in a modal popup. I can apply some features: change/ goto page, zoom, etc ...
I want to view pdf file in fullscreen or presentation mode just like the demo of pdfjs:
I have looked into pdfjs source code but I do not know how to enter fullscreen/presentation mode.
Upvotes: 2
Views: 12623
Reputation: 759
<iframe height='100%' width='100%' scrolling='no' allowfullscreen webkitallowfullscreen src='./viewer.html?file=./PDFFile.PDF'></iframe>
allowfullscreen
and webkitallowfullscreen
do the trick for presentation mode.
Upvotes: 5
Reputation: 1697
You can simply add page number to open pdf in full-screen in separate tab. For Example
<a href="your URL#page=2">Open yourpdf.pdf with PDF.js in new tab</a>
Upvotes: 0