mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-03 14:59:18 +02:00
65 lines
1.3 KiB
HTML
65 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>EPUB.js Continuous Example</title>
|
|
|
|
<script src="../dist/epub.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="examples.css">
|
|
|
|
<style type="text/css">
|
|
|
|
.epub-container {
|
|
/* min-width: 320px; */
|
|
/* margin: 0 auto; */
|
|
/* position: relative; */
|
|
}
|
|
|
|
.epub-container .epub-view > iframe {
|
|
background: white;
|
|
box-shadow: 0 0 4px #ccc;
|
|
/*margin: 10px;
|
|
padding: 20px;*/
|
|
}
|
|
|
|
#viewer {
|
|
width: 600px;
|
|
height: 100vh;
|
|
/* overflow: auto; */
|
|
margin: 0 auto;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="viewer"></div>
|
|
|
|
<script>
|
|
var currentSectionIndex = 8;
|
|
// Load the opf
|
|
var book = ePub("https://s3.amazonaws.com/epubjs/books/moby-dick/OPS/package.opf");
|
|
var rendition = book.renderTo("viewer", {
|
|
manager: "continuous",
|
|
flow: "scrolled",
|
|
width: "100%",
|
|
height: "100%"
|
|
});
|
|
var displayed = rendition.display("epubcfi(/6/14[xchapter_001]!4/2/24/2[c001p0011]/1:799)");
|
|
|
|
|
|
displayed.then(function(renderer){
|
|
// -- do stuff
|
|
});
|
|
|
|
// Navigation loaded
|
|
book.loaded.navigation.then(function(toc){
|
|
// console.log(toc);
|
|
});
|
|
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|