-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (68 loc) · 1.32 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - Daylight Cycles of Earth</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<h1>
<span>
Daylight Cycles
<i>of</i>
<b>Earth</b>
</span>
</h1>
<div class="earth-container">
<div
class="globe"
onmouseover="isHover = true"
onmousemove="hoverOrbit(event)"
onmouseout="isHover = false"
>
<div
id="northLabel"
class="day-label north-label"
></div>
<div
id="southLabel"
class="day-label south-label"
></div>
</div>
<div class="shadow">
<span
id="label"
class="label"
></span>
</div>
</div>
<div
class="orbit-container"
onmouseover="isHover = true"
onmousemove="hoverOrbit(event)"
onmouseout="isHover = false"
>
<div class="sun"></div>
<div class="earth"></div>
<div class="labels">
<div>
<span> Solstice </span>
<span> Equinox </span>
<span> Solstice </span>
</div>
<div>
<span> Dec 21<small>st</small> </span>
<span>
Mar 20<small>th</small>
<br/>
Sep 23<small>rd</small>
</span>
<span> Jun 21<small>st</small> </span>
</div>
</div>
</div>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>