-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
51 lines (43 loc) · 1.56 KB
/
index.htm
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
<!DOCTYPE html>
<html ng-app="skyVA">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Sun & Moon</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="jquery.min.js"></script>
<script src="angularjs.min.js"></script>
<script src="app.js"></script>
<script src="main.js"></script>
</head>
<body scroll style="overflow-x: hidden;">
<!-- <div id="title" style="
background: url(title-cloud.png) no-repeat;
position: fixed;
top: 0;
left: 0;
height: 200px;
width: 300px;
background-size:contain;">
Hello
</div> -->
<div id="skyva">
<div>
<div id="skyva-cloud-container" class="skyva-container">
<div id="skyva-cloud" class="skyva-element"></div>
</div>
</div>
<div>
<div id="skyva-sm-container" class="skyva-container">
<div id="skyva-sun" class="skyva-element"></div>
<div id="skyva-moon" class="skyva-element" style="top:100%;"></div>
</div>
</div>
<div id="skyva-light-container"></div>
</div>
<!-- ------------------------ fake content ----------------------------- -->
<h1 style="font-size: 2000px; background: red; visibility: hidden;">Fake</h1>
<!-- ----------------------- end fake content -------------------------- -->
</body>
</html>