summaryrefslogtreecommitdiff
path: root/lib/epub.js/examples/embedded.html
blob: e9946f81e4c9a4372fa79ef3b1d1ffd5a6f1b0fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
  <title></title>

  <script src="../dist/epub.js"></script>

  <style>

    body {
      margin: 0;
    }

  </style>
</head>
<body>

  <script>
    var params = URLSearchParams && new URLSearchParams(document.location.search.substring(1));
    var url = params && params.get("url") && decodeURIComponent(params.get("url"));
    var currentCfi = (params && params.get("cfi")) ? params.get("cfi") : undefined;
    var currentSectionIndex = (params && params.get("loc")) ? parseInt(params.get("loc")) : undefined;

    // Load the opf
    var book = ePub(url || "https://s3.amazonaws.com/moby-dick/");
    var rendition = book.renderTo(document.body, {
      manager: "continuous",
      snap: true
    });

    rendition.display(currentCfi || currentSectionIndex);


    rendition.on("rendered", function(section){
      // console.log("rendered", section);
      var nextSection = section.next();
      var prevSection = section.prev();

      var current = book.navigation && book.navigation.get(section.href);

      if (current) {
        document.title = current.label;
      }
    });

    rendition.on("relocated", function(location){
      // console.log("locationChanged", location)
      console.log("locationChanged start", location.start.cfi)
      // console.log("locationChanged end", location.end.cfi)
    });

    window.addEventListener("unload", function () {
      console.log("unloading");
      this.book.destroy();
    });

  </script>
</body>
</html>