mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-02 14:49:16 +02:00

* Initial embedding support * Updates for rendering in embedded webviews * toLowerCase nodeName check
79 lines
2.3 KiB
HTML
79 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html class="no-js">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>ePubJS Examples</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<link rel="stylesheet" type="text/css" href="examples.css">
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
font-size: 1em;
|
|
line-height: 1.33em;
|
|
font-family: serif;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
font-size: 1.5em;
|
|
line-height: 1.33em;
|
|
text-align: center;
|
|
padding-bottom: 0em;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
font-weight: normal;
|
|
letter-spacing: 4px;
|
|
padding-top: 60px;
|
|
}
|
|
|
|
ol {
|
|
width: 350px;
|
|
margin: 50px auto;
|
|
}
|
|
|
|
a {
|
|
font-size: 1.2em;
|
|
line-height: 1.33em;
|
|
color: #000;
|
|
}
|
|
|
|
#book-wrapper {
|
|
position: inherit;
|
|
}
|
|
</style>
|
|
|
|
|
|
</head>
|
|
<body>
|
|
<div id="main">
|
|
<div id="book-wrapper">
|
|
<div id="book-viewer">
|
|
|
|
<h1>Examples</h1>
|
|
<ol>
|
|
<li><a href="spreads.html">Spreads</a></li>
|
|
<li><a href="archived.html">Archived</a></li>
|
|
<li><a href="scrolled.html">Scrolled Doc</a></li>
|
|
<li><a href="continuous-spreads.html">Spreads Continuous</a></li>
|
|
<li><a href="continuous-scrolled.html">Scrolled Continuous</a></li>
|
|
<li><a href="swipe.html">Swipe</a></li>
|
|
<li><a href="input.html">Open from File</a></li>
|
|
<li><a href="renderless.html">Renderless</a></li>
|
|
<li><a href="hooks.html">Hooks</a></li>
|
|
<li><a href="highlights.html">Highlights</a></li>
|
|
<li><a href="hypothesis.html">Hypothes.is</a></li>
|
|
<!-- <li><a href="hypothesis.html">Annotations with Hypothes.is</a></li> -->
|
|
</ol>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|