mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-03 14:59:18 +02:00
148 lines
3.2 KiB
HTML
148 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<title>EPUB.js Pagination Example</title>
|
||
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/detect_swipe/2.1.1/jquery.detect_swipe.min.js"></script>
|
||
<script src="../dist/epub.js"></script>
|
||
|
||
<style type="text/css">
|
||
body {
|
||
margin: 0;
|
||
background: #fafafa;
|
||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||
color: #333;
|
||
|
||
position: absolute;
|
||
height: 100%;
|
||
width: 100%;
|
||
display: flex;
|
||
-webkit-align-items: center;
|
||
-webkit-justify-content: center;
|
||
}
|
||
|
||
#viewer {
|
||
width: 290px;
|
||
height: 580px;
|
||
background: white;
|
||
box-shadow: 0 0 4px #ccc;
|
||
padding: 10px 10px 0px 10px;
|
||
margin: 5px auto;
|
||
background: white;
|
||
}
|
||
|
||
#prev {
|
||
left: 40px;
|
||
}
|
||
|
||
#next {
|
||
right: 40px;
|
||
}
|
||
|
||
.arrow {
|
||
position: fixed;
|
||
top: 50%;
|
||
margin-top: -32px;
|
||
font-size: 64px;
|
||
color: #E2E2E2;
|
||
font-family: arial, sans-serif;
|
||
font-weight: bold;
|
||
cursor: pointer;
|
||
-webkit-user-select: none;
|
||
-moz-user-select: none;
|
||
user-select: none;
|
||
}
|
||
|
||
.arrow:hover {
|
||
color: #777;
|
||
}
|
||
|
||
.arrow:active {
|
||
color: #000;
|
||
}
|
||
|
||
|
||
|
||
@media only screen
|
||
and (min-device-width : 320px)
|
||
and (max-device-width : 667px) {
|
||
#viewer {
|
||
height: 96.5%;
|
||
}
|
||
#viewer iframe {
|
||
pointer-events: none;
|
||
}
|
||
.arrow {
|
||
position: inherit;
|
||
display: none;
|
||
}
|
||
}
|
||
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div id="viewer"></div>
|
||
<div id="prev" class="arrow">‹</div>
|
||
<div id="next" class="arrow">›</div>
|
||
<script>
|
||
// Load the opf
|
||
// var book = ePub("https://s3.amazonaws.com/moby-dick/OPS/package.opf");
|
||
var book = ePub("../books/moby-dick/OPS/package.opf");
|
||
var rendition = book.renderTo("viewer", {
|
||
method: "paginate",
|
||
width: "100%",
|
||
height: "100%"
|
||
});
|
||
|
||
var displayed = rendition.display("chapter_001.xhtml");
|
||
// var displayed = rendition.display();
|
||
|
||
displayed.then(function(renderer){
|
||
// -- do stuff
|
||
});
|
||
|
||
// Navigation loaded
|
||
book.loaded.navigation.then(function(toc){
|
||
// console.log(toc);
|
||
});
|
||
|
||
var next = document.getElementById("next");
|
||
next.addEventListener("click", function(){
|
||
rendition.next();
|
||
}, false);
|
||
|
||
var prev = document.getElementById("prev");
|
||
prev.addEventListener("click", function(){
|
||
rendition.prev();
|
||
}, false);
|
||
|
||
document.addEventListener("keyup", function(e){
|
||
|
||
// Left Key
|
||
if ((e.keyCode || e.which) == 37) {
|
||
rendition.prev();
|
||
}
|
||
|
||
// Right Key
|
||
if ((e.keyCode || e.which) == 39) {
|
||
rendition.next();
|
||
}
|
||
|
||
}, false);
|
||
|
||
$(window).on( "swipeleft", function( event ) {
|
||
rendition.next();
|
||
});
|
||
|
||
$(window).on( "swiperight", function( event ) {
|
||
rendition.prev();
|
||
});
|
||
|
||
|
||
</script>
|
||
|
||
</body>
|
||
</html>
|