pixelplanet/public/turtle/index.html
2020-01-02 17:58:06 +01:00

23 lines
788 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebGL PixelPlace TechDemo Globe</title>
<style>
body { margin: 0; overflow: hidden; background-color: #000; }
.tm { position: absolute; top: 10px; right: 10px; }
.webgl-error { font: 15px/30px monospace; text-align: center; color: #fff; margin: 50px; }
.webgl-error a { color: #fff; }
</style>
</head>
<body>
<div id="webgl"></div>
<script src="https://unpkg.com/three@0.91.0/build/three.min.js"></script>
<script src="https://unpkg.com/three@0.91.0/examples/js/loaders/GLTFLoader.js"></script>
<script src="Detector.js"></script>
<script src="TrackballControls.js"></script>
<script src="space.js"></script>
</body>
</html>