forked from ibrahimsag/read
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc.html
More file actions
44 lines (41 loc) · 632 Bytes
/
doc.html
File metadata and controls
44 lines (41 loc) · 632 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>doc</title>
<style>
body {
margin: 0;
background-color: black;
}
#container {
position: relative;
}
#wrapper svg {
user-select: none;
}
#textLayer {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
line-height: 1.0;
}
#textLayer span {
position: absolute;
color: #ababab;
opacity: 30%;
white-space: pre;
transform-origin: 0% 0%;
}
</style>
</head>
<body>
<div id="container">
</div>
<script src="node_modules/pdfjs-dist/build/pdf.js"></script>
<script src="/build/doc.js"></script>
</body>
</html>