HTML5在线预览PDF的示例代码
程序员文章站
2022-06-30 11:14:34
本篇文章主要介绍了HTML5在线预览PDF的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
... 17-09-14...
简介
pdf.js is a portable document format (pdf) viewer that is built with html5.
pdf.js is community-driven and supported by mozilla labs. our goal is to create a general-purpose, web standards-based platform for parsing and rendering pdfs.
开源地址:
下载后不能直接使用,需要重新构建,不熟悉将会非常麻烦
构建好的程序包:
示例
引用文件,直接复制下文可以直接使用
<!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"> <div id="tmplayer" class="tmplayer" style="height: 557px; width: 100%; height: 100%"></div> <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>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: HTML5添加禁止缩放功能
下一篇: 枸杞人参鸡汤的做法,美味是这样煲出来的
推荐阅读
-
workerman结合laravel开发在线聊天应用的示例代码
-
如何用canvas实现在线签名的示例代码
-
html5 canvas的绘制文本自动换行的示例代码
-
Html5 canvas实现粒子时钟的示例代码
-
HTML5 manifest离线缓存的示例代码
-
html5使用canvas压缩图片的示例代码
-
js如何获取图片url的Blob值并预览示例代码
-
HTML5 Canvas实现图片缩放、翻转、颜色渐变的代码示例
-
基于elementUI实现图片预览组件的示例代码
-
ASP.NET Core 2.0集成Office Online Server(OWAS)实现办公文档的在线预览与编辑(支持word\excel\ppt\pdf等格式)