今回は、H5 で PDF をオンラインでプレビューする方法を説明します。H5 で PDF をオンラインでプレビューするための 注意事項 は何ですか。実際のケースを見てみましょう。
はじめにPDF.js は、HTML5 で構築されたポータブルなDocument Format (PDF) ビューアです。
PDF.js はコミュニティ主導で、Mozilla Labs によってサポートされている汎用のツールを作成することです。 PDF の解析とレンダリングのための Web 標準ベースのプラットフォームです。オープンソースのアドレス:https://github.com/mozilla/pdf.js
ダウンロード後は直接使用できないため、再構築する必要があります。慣れていないので、非常に面倒ですビルドされたパッケージ: build_jb51.rarExample
<!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>
以上がH5 で PDF をオンラインでプレビューする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。