-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (36 loc) · 862 Bytes
/
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
39
40
41
42
43
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<title>Video Stipplings</title>
<style>
html,
body {
margin: 0;
padding: 0;
overflow: hidden
}
svg {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%
}
video {
display: none;
}
img {
display: none;
}
</style>
</head>
<body>
<script src="./static/d3.v7.min.js"></script>
<h1>Loading...</h1>
<video controls playsinline>
<source id="video" src="./public/rj.mov" type="video/mp4"></source>
Sorry, your browser doesn't support embedded H264 videos.
</video>
<img src="./public/rj.jpg"></img>
<script src="./index.js"></script>
</body>