You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
807 B
31 lines
807 B
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<style type="text/css">
|
|
body{
|
|
margin: 0;
|
|
padding:0;
|
|
border:0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<#if pdfUrl?contains("http://")>
|
|
<#assign finalUrl="${pdfUrl}">
|
|
<#else>
|
|
<#assign finalUrl="${baseUrl}${pdfUrl}">
|
|
</#if>
|
|
<iframe src="/pdfjs/web/viewer.html?file=${finalUrl}" width="100%" frameborder="0"></iframe>
|
|
</body>
|
|
<script type="text/javascript">
|
|
document.getElementsByTagName('iframe')[0].height = document.documentElement.clientHeight-10;
|
|
/**
|
|
* 页面变化调整高度
|
|
*/
|
|
window.onresize = function(){
|
|
var fm = document.getElementsByTagName("iframe")[0];
|
|
fm.height = window.document.documentElement.clientHeight-10;
|
|
}
|
|
</script>
|
|
</html> |