31 lines
929 B
HTML
31 lines
929 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" >
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Visualizing The Sun's Path in the Sky</title>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
<body>
|
|
<!-- partial:index.partial.html -->
|
|
<canvas id="zdog-canvas" width="800" height="640"></canvas>
|
|
<div class="place-controls">
|
|
<button id="south">« South</button>
|
|
<p id="place">Current Place</p>
|
|
<button id="north">North »</button>
|
|
</div>
|
|
<div class="time-controls">
|
|
<p id="month">Current Month</p>
|
|
<div class="buttons">
|
|
<button id="rewind">«</button>
|
|
<button id="pause">||</button>
|
|
<button id="play" class="hidden">></button>
|
|
<button id="forward">»</button>
|
|
</div>
|
|
</div>
|
|
<!-- partial -->
|
|
<script src='https://unpkg.com/zdog@1/dist/zdog.dist.min.js'></script>
|
|
<script src="./script.js"></script>
|
|
|
|
</body>
|
|
</html> |