-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.33 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.33 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Solar System</title>
<link rel="stylesheet" href="style.css">
</head>
<body id = "body">
<div id = "screen">
<div id = "top-left-btn-group">
<button id = "play" onclick="playPause('Play')">Play</button>
<button id = "play" onclick="playPause('Pause')">Pause</button>
<button id = "fastButton" onclick="changeSpeed('slow')">-</button>
<button id = "speed">Speed</button>
<button id = "slowButton" onclick="changeSpeed('fast')">+</button>
<br>
<br>
<button id = "camera" onclick="changeCamera()">Change Angle</button>
<button id = "zoomOut" onclick="changeZoom('out')">-</button>
<button id = "zoom">Zoom</button>
<button id = "zoomIn" onclick="changeZoom('in')">+</button>
<br>
<br>
<button id = "timeDisplay">0 Year(s), 0 Day(s), 0 Hour(s)</button>
</div>
<div id = "top-right-btn-group">
<a href="https://linktr.ee/sudipneupane" target="_blank"><button>Contact Me</button></a>
</div>
<canvas onwheel = "zoom(event)" id="canvas" width="500" height="500"></canvas>
</div>
<script src = "script.js"></script>
</body>
</html>