이번에는 H5에서 온라인으로 PDF를 미리 보는 방법을 보여드리겠습니다. H5에서 온라인으로 PDF를 미리 볼 수 있는 주의사항은 무엇인가요?
소개
PDF.js는 HTML5로 제작된 휴대용 Document 형식(PDF) 뷰어입니다.
PDF.js는 커뮤니티 중심이며 Mozilla Labs에서 지원합니다. PDF 구문 분석 및 렌더링을 위한 웹 표준 기반 플랫폼입니다.
오픈 소스 주소: https://github.com/mozilla/pdf.js
다운로드 후 바로 사용할 수 없으며 재구축해야 합니다. 잘 모르시면 엄청 번거로우실 겁니다
빌트 패키지 : build_jb51.rar
Example
Quote파일, 다음을 복사해서 직접 사용하세요
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>课程详情</title> <style type="text/css"> </style> <script src="~/Scripts/jquery-1.10.2.min.js"></script> <script src="~/Scripts/plugins/pdfjs/pdf.js"></script> <script src="~/Scripts/plugins/pdfjs/pdf.worker.js"></script> <script type="text/javascript"> var var_filepath = decodeURIComponent("@filepath");//不能跨域 var var_win_height = $(window).height(); $(document).ready(function () { resetPlayerSize(); }); $(window).resize(function () { resetPlayerSize(); }); function resetPlayerSize() { var_win_height = $(window).height(); $(".tmPlayer").css({ "height": var_win_height + "px" }); } </script> </head> <body style="margin: 0;overflow: hidden"> <p id="tmPlayer" class="tmPlayer" style="height: 557px; width: 100%; height: 100%"></p> <script type="text/javascript"> $('.tmPlayer').html('<iframe frameBorder="0" scrolling="no" src="/Scripts/plugins/pdfjs/generic/web/viewer.html?file=' + var_filepath + '" style="width:100%; height:100%;"></iframe>'); </script> </body> </html>
사례를 읽어보시고 방법을 터득하신 것 같아요 이 기사에서 더 흥미로운 정보를 보려면 PHP 중국어 웹사이트 기사의 다른 관련 주제에 주목하세요!
추천 도서:
위 내용은 H5에서 온라인으로 PDF를 미리 보는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!