View PDF file in fullscreen mode using PDFJS

dangquang1020 picture dangquang1020 · May 6, 2016 · Viewed 7.6k times · Source

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:

https://mozilla.github.io/pdf.js/web/viewer.html

I have looked into pdfjs source code but I do not know how to enter fullscreen/presentation mode.

Answer

Tarek.Eladly picture Tarek.Eladly · Jul 29, 2016
<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.