Files
foliate-js/reader.html
T

207 lines
4.9 KiB
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<meta name="color-scheme" content="light dark">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Security-Policy" content="default-src 'self' blob:; script-src 'self'; style-src 'self' blob: 'unsafe-inline'; img-src 'self' blob: data:; connect-src 'self' blob: data:; frame-src blob: data:; object-src 'none'; form-action 'none';">
<title>E-Book Reader</title>
<style>
body {
margin: 0;
font-family: system-ui, sans-serif;
}
#drop-target {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
#drop-target h1 {
font-weight: 900;
}
#file-button {
font: inherit;
background: none;
border: 0;
padding: 0;
text-decoration: underline;
cursor: pointer;
}
.icon {
display: block;
fill: none;
stroke: currentcolor;
stroke-width: 2px;
}
.empty-state-icon {
margin: auto;
}
.toolbar {
box-sizing: border-box;
position: absolute;
z-index: 1;
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 48px;
padding: 6px;
opacity: .25;
transition: opacity 250ms ease;
visibility: hidden;
}
.toolbar:hover {
opacity: 1;
}
.toolbar button {
padding: 3px;
border-radius: 6px;
background: none;
border: 0;
}
.toolbar button:hover {
background: rgba(0, 0, 0, .1);
}
#header-bar {
top: 0;
}
#nav-bar {
bottom: 0;
}
#progress-label {
font-size: small;
font-variant-numeric: tabular-nums;
}
#side-bar {
visibility: hidden;
box-sizing: border-box;
position: absolute;
z-index: 2;
top: 0;
left: 0;
height: 100%;
width: 320px;
transform: translateX(-320px);
display: flex;
flex-direction: column;
background: Canvas;
color: CanvasText;
box-shadow: 0 0 0 1px rgba(0, 0, 0, .2), 0 0 40px rgba(0, 0, 0, .2);
transition: visibility 0s linear 300ms, transform 300ms ease;
}
#side-bar.show {
visibility: visible;
transform: translateX(0);
transition-delay: 0s;
}
#dimming-overlay {
visibility: hidden;
position: fixed;
z-index: 2;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .2);
opacity: 0;
transition: visibility 0s linear 300ms, opacity 300ms ease;
}
#dimming-overlay.show {
visibility: visible;
opacity: 1;
transition-delay: 0s;
}
#toc-view {
padding: .5rem;
overflow-y: scroll;
--active-bg: rgba(0, 0, 0, .05);
}
@supports (color-scheme: light dark) {
@media (prefers-color-scheme: dark) {
#toc-view {
--active-bg: rgba(255, 255, 255, .1);
}
}
}
#toc-view li, #toc-view ol {
margin: 0;
padding: 0;
list-style: none;
}
#toc-view a, #toc-view span {
display: block;
border-radius: 6px;
padding: 8px;
margin: 2px 0;
}
#toc-view a {
color: CanvasText;
text-decoration: none;
}
#toc-view a:hover {
background: var(--active-bg);
}
#toc-view span {
color: GrayText;
}
#toc-view svg {
margin-inline-start: -24px;
padding-inline-start: 5px;
padding-inline-end: 6px;
fill: CanvasText;
cursor: default;
transition: transform .2s ease;
opacity: .5;
}
#toc-view svg:hover {
opacity: 1;
}
#toc-view [aria-current] {
font-weight: bold;
background: var(--active-bg);
}
#toc-view [aria-expanded="false"] svg {
transform: rotate(-90deg);
}
#toc-view [aria-expanded="false"] + [role="group"] {
display: none;
}
</style>
<input type="file" id="file-input" hidden>
<div id="drop-target" class="filter">
<div>
<svg class="icon empty-state-icon" width="72" height="72" aria-hidden="true">
<path d="M36 18s-6-6-12-6-15 6-15 6v42s9-6 15-6 12 6 12 6c4-4 8-6 12-6s12 2 15 6V18c-6-4-12-6-15-6-4 0-8 2-12 6m0 0v42"/>
</svg>
<h1>Drop a book here!</h1>
<p>Or <button id="file-button">choose a file</button> to open it.</p>
</div>
</div>
<div id="dimming-overlay" aria-hidden="true"></div>
<div id="side-bar">
<div id="toc-view"></div>
</div>
<div id="header-bar" class="toolbar">
<button id="side-bar-button" aria-label="Show sidebar">
<svg class="icon" width="24" height="24" aria-hidden="true">
<path d="M 4 6 h 16 M 4 12 h 16 M 4 18 h 16"/>
</svg>
</button>
</div>
<div id="nav-bar" class="toolbar">
<button id="left-button" aria-label="Turn left page">
<svg class="icon" width="24" height="24" aria-hidden="true">
<path d="M 15 6 L 9 12 L 15 18"/>
</svg>
</button>
<div id="progress-label"></div>
<button id="right-button" aria-label="Turn right page">
<svg class="icon" width="24" height="24" aria-hidden="true">
<path d="M 9 6 L 15 12 L 9 18"/>
</svg>
</button>
</div>
<script src="vendor/zip-no-worker.min.js"></script>
<script src="vendor/fflate.min.js"></script>
<script src="reader.js" type="module"></script>