-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 828 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF8">
<title>Cycle-Elm fun</title>
<style type="text/css" media="all">
.sections {
height: 600px;
width: 1440px;
margin: auto;
position: relative;
}
.sections > div {
box-sizing: border-box;
border: 2px solid white;
position: absolute;
display: inline-block;
width: 33%;
height: 100%;
}
.datamap-asia {
left: 33%;
}
.datamap-us {
left: 66%;
}
</style>
</head>
<body>
<div id="app">
Press Up/Down/Left/Right or H/J/K/L to move the cursor! Double click the screen to clear your picture! :)
</div>
<script src="build/index.js"></script>
</body>
</html>