mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-05 15:32:55 +02:00
63 lines
2.1 KiB
HTML
Executable file
63 lines
2.1 KiB
HTML
Executable file
<!DOCTYPE html>
|
||
<html class="no-js">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
<title></title>
|
||
<meta name="description" content="">
|
||
<meta name="viewport" content="width=device-width">
|
||
|
||
|
||
<link rel="stylesheet" href="css/normalize.css">
|
||
<link rel="stylesheet" href="css/main.css">
|
||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
|
||
<script src="fpjs/libs/modernizr-2.6.2.min.js"></script>
|
||
<script>
|
||
//-- Define Global
|
||
// var FP = (function(){
|
||
// "use strict";
|
||
// return {
|
||
// namespace: function(name) {
|
||
// if(this[name] === undefined) { this[name] = {}; }
|
||
// if(typeof this[name] !== 'object') { throw "Namespace Error: "+name; }
|
||
// return this[name];
|
||
// }
|
||
// };
|
||
// })();
|
||
var FP = {};
|
||
document.onreadystatechange = function () {
|
||
if (document.readyState == "complete") {
|
||
FP.app.init();
|
||
}
|
||
};
|
||
|
||
</script>
|
||
|
||
|
||
<script async src="fpjs/render/core.js"></script>
|
||
<script async src="fpjs/render/book.js"></script>
|
||
<script async src="fpjs/reader/app.js"></script>
|
||
|
||
</head>
|
||
<body>
|
||
<div id="sidebar">
|
||
<div id="controls">
|
||
<input id="search" placeholder="search">
|
||
<img id="open" src="/img/menu-icon.png">
|
||
</div>
|
||
<ol id="toc"></ol>
|
||
|
||
</div>
|
||
<div id="main">
|
||
<div id="titlebar">
|
||
<span id="book-title"></span>
|
||
–
|
||
<span id="chapter-title"> </span>
|
||
</div>
|
||
<div id="prev" class="arrow">‹</div>
|
||
<div id="area"></div>
|
||
<div id="next" class="arrow">›</div>
|
||
<div id="divider"></div>
|
||
</div>
|
||
</body>
|
||
</html>
|