-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimation.html
More file actions
56 lines (47 loc) · 1023 Bytes
/
animation.html
File metadata and controls
56 lines (47 loc) · 1023 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
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>SplitStream Animation Page</title>
<script type="text/javascript" src="bundle_animation.js"></script>
<style>
html,
body {
/* background-color: #222222; */
font-family: monospace;
height: 100%;
overflow: hidden;
}
* {
margin: 0;
padding: 0;
list-style-type: none;
}
#app {
align-content: flex-start;
height: 100%;
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
#wrapper {
height: 100%;
flex: 1 1 auto;
overflow: hidden;
}
path.stream {
/* stroke: black; */
}
</style>
</head>
<body>
<div id="app">
<div id="wrapper">
</div>
</div>
</body>
</html>