mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
24 lines
433 B
HTML
24 lines
433 B
HTML
<!-- neck.html by WangLu 2012.08.15 -->
|
|
<title></title>
|
|
<script type="text/javascript">
|
|
function show_pages()
|
|
{
|
|
var pages = document.getElementById('pdf-main').childNodes;
|
|
var idx = 0;
|
|
var f = function(){
|
|
if (idx < pages.length) {
|
|
try{
|
|
pages[idx].style.display='block';
|
|
}catch(e){}
|
|
++idx;
|
|
setTimeout(f,100);
|
|
}
|
|
};
|
|
f();
|
|
};
|
|
</script>
|
|
</head>
|
|
<body onload="show_pages();">
|
|
<div id="pdf-main">
|
|
<!-- neck.html END -->
|