码迷,mamicode.com
首页 > 其他好文 > 详细

pdf在线阅读器

时间:2014-08-21 11:32:34      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:pdf在线阅读器   pdfobject   web版pdf阅读器   html5   pdfobject.min.js   

最近论坛里有人提到了,在线pdf阅读器怎么做。我百度了一下,发现很多人都很懒,程序员都很懒吗?
答案是否定的。为什么都不愿意去搜索一下呢,网上很多答案的。我这里就列举一例,大家共勉。

看代码,页面代码(herman.html):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>pdf在线阅读器</title>
<script type="text/javascript" src="js/pdfobject.min.js" ></script>
<script type="text/javascript"> 
window.onload = function (){
    var success = new PDFObject({ 
    	url: "pdf/JNI攻略之一――建立一个简单的JNI程序.pdf" ,
    	pdfOpenParams: { 
    		scrollbars: '0', 
    		toolbar: '0', 
    		statusbar: '0'
    	}}).embed();
};
</script> 
</head >
<body >
</body>
</html>
看看项目截图:

bubuko.com,布布扣

运行效果:bubuko.com,布布扣

看了博客是相知,理解观点是朋友,赞同观点是同志.

如有疑问,请加qq群:135430763 共同学习!

项目源码已经上次到资源里面,点击下载:http://download.csdn.net/download/xmt1139057136/7795091

pdf在线阅读器,布布扣,bubuko.com

pdf在线阅读器

标签:pdf在线阅读器   pdfobject   web版pdf阅读器   html5   pdfobject.min.js   

原文地址:http://blog.csdn.net/xmtblog/article/details/38726469

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!