-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (38 loc) · 1.15 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
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>IT Project</title>
<link rel="stylesheet" href="css/semantic.min.css"></link>
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<style>
@keyframes back-to-docs {
0% {
transform: translateY(0);
}
50% {
transform: translateY(0.5em);
}
100% {
transform: translateY(0);
}
}
</style>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--<div style="margin: 50%; animation: back-to-docs 1.5s ease-in-out-->
<!--infinite; z-index: 6;" id="app"></div>-->
<canvas id="c"></canvas>
<!--<div class="info">Click to add gravity point.</div>-->
<script src='scripts/kzymdn.js'></script>
<div id="app" style=" margin-top: 100px;animation: back-to-docs 1.5s ease-in-out
infinite; z-index: 6;" class="ui text container grid">
</div>
<script src="scripts/index.js"></script>
<script>
// install babel hooks in the renderer process
require('babel-register');
require('./scripts/main');
</script>
</body>
</html>