-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.2 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Score Viewer</title>
<meta
name="description"
content="A Simple PDF Viewer with MIDI Visualization"
/>
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/-/ic/apple-touch-icon.png" />
<meta name="theme-color" content="#cdcdcd" />
</head>
<body>
<section class="visualizer" inert>
<div class="effect below"></div>
</section>
<section class="swiper">
<main id="container" class="swiper-wrapper">
<div class="swiper-slice welcome">
<h1 class="info level-1">
Drop a pdf here or <a id="upload">upload a file</a>
</h1>
<h2 class="info level-2">
Press Enter or double-click to toggle fullscreen mode
</h2>
</div>
</main>
<div class="swiper-pagination"></div>
</section>
<section class="visualizer" inert>
<div class="effect above"></div>
</section>
<input type="file" id="input" accept="application/pdf" />
<script type="module" src="/index.ts"></script>
</body>
</html>