38 lines
1.4 KiB
PHP
38 lines
1.4 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>3D Solar System</title>
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
<div id="time-container"></div>
|
|
<div id="stats-container">
|
|
<div id="stats-buttons">
|
|
<button data-planet="mercury">Mercury</button>
|
|
<button data-planet="venus">Venus</button>
|
|
<button data-planet="earth">Earth</button>
|
|
<button data-planet="mars">Mars</button>
|
|
<button data-planet="jupiter">Jupiter</button>
|
|
<button data-planet="saturn">Saturn</button>
|
|
<button data-planet="uranus">Uranus</button>
|
|
<button data-planet="neptune">Neptune</button>
|
|
</div>
|
|
<div id="stats-info"></div>
|
|
</div>
|
|
<div id="controls-container">
|
|
<button id="pause-button">Pause</button>
|
|
<button id="speed-toggle-button">Speed: 1x</button>
|
|
</div>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"three": "https://unpkg.com/three@0.164.1/build/three.module.js",
|
|
"three/addons/": "https://unpkg.com/three@0.164.1/examples/jsm/"
|
|
}
|
|
}
|
|
</script>
|
|
<script type="module" src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html> |