在html页面中,如何将pdf文档的第一页显示为图标?

时间:2013-07-23 10:45:52

标签: html5 image pdf

我使用以下代码在HTML页面中显示PDF文件列表。我想将每个PDF文件的第一页显示为它们的图像图标。我现在没有使用任何服务器。请指导我这个。 代码在这里:

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link type="text/css" href="cssjquery/ui-lightness/jquery-ui-1.8.24.custom.css" rel="stylesheet" />
<title>Unit 3, ADS</title>
<style type="text/css">
.imagewrap {
    display: inline-block;
    position: relative;
}

.btn {
    position: absolute;
    top: 0;
    right: 0;
}

</style>


<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script src="http://code.jquery.com/jquery.js"></script>
<script type="text/javascript" src="jsjquery/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="jsjquery/jquery-ui-1.8.24.custom.min.js"></script>
<script type="text/javascript">

$(document).ready(function(){ 
$('a.btn').on('click',function(e){
    e.preventDefault();
    pdfID = $(this).closest('.imagewrap')[0].id;
    $('#dialog').dialog('open');
  alert('Deleting '+pdfID+'');
   $(this).closest('.imagewrap')
        .fadeTo(300,0,function(){
            $(this)
                .animate({width:0},200,function(){
                    $(this)
                        .remove();
                });
        });   
});
}); 


</script>
</head>
<body>


    <h1>PDF Files</h1>
<br><br>
    <div class="imagewrap" id="pdf1">
        <a href="something1.pdf"><img src="pdf icon.jpg" width="100" height="100" border="0"></a>&nbsp;&nbsp;<a class="btn" href="#"><i class=" icon-remove-sign" ></i></a>
    </div>
    <div class="imagewrap" id="pdf2">
        <a href="something2.pdf"><img src="pdf icon.jpg" width="100" height="100" border="0"></a>&nbsp;&nbsp;<a class="btn" href="#"><i class=" icon-remove-sign" ></i></a>
    </div>
<div class="imagewrap" id="pdf3">
        <a href="something3.pdf"><img src="pdf icon.jpg" width="100" height="100" border="0"></a>&nbsp;&nbsp;<a class="btn" href="#"><i class=" icon-remove-sign" ></i></a>
    </div>

</body>

P.S。 :我在这里为每个div添加了imagewrap类,因为我无法将删除图标添加到每个pdf图标图像中。

非常感谢任何帮助。 提前致谢

2 个答案:

答案 0 :(得分:0)

如果您不想使用图像进行预览,则必须渲染每个.pdf文件。 最简单的方法是IFrame,但您可以找到更多解决方案here

但请记住,如果你有几个.pdf的列表,你放入IFrame中的每个.pdf都会被完全加载,这会使你的页面变慢。

答案 1 :(得分:0)

快速搜索“pdf缩略图服务”显示了一些服务。其中大多数是免费增值(每月免费点击数量)。

我尝试使用以下网址(PDF参考): http://partners.adobe.com/public/developer/en/pdf/PDFReference.pdf

  • bluga.net:分钟后仍在嘎吱嘎吱地
  • shrinktheweb.com:在第二页中很好地返回第一页
  • websnapr.com:在第二个
  • 中显示损坏的图像
  • thumbalizr.com:13秒后返回'图片失败'

基于这个快速实验,我会仔细看看shrinktheweb.com(不是附属的)。