mirror of
https://github.com/openglobus/openglobus.git
synced 2025-12-08 19:25:27 +00:00
23 lines
563 B
HTML
23 lines
563 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>OpenGlobus SkyBox Example</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script src="./skyBox.js" type="module"></script>
|
|
<link rel="stylesheet" href="../../css/og.css" type="text/css" />
|
|
<style>
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="earth" style="position: absolute; width: 100%; height: 100%"></div>
|
|
</body>
|
|
|
|
</html> |