2021-07-05 20:51:08 -04:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<style>
|
|
|
|
html, body
|
|
|
|
{
|
|
|
|
margin:0;
|
|
|
|
}
|
|
|
|
canvas
|
|
|
|
{
|
|
|
|
position:absolute;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
display:block;
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<canvas></canvas>
|
2022-04-10 12:42:24 -04:00
|
|
|
<script type="importmap">
|
|
|
|
{"imports": {
|
|
|
|
"three": "https://esm.sh/three",
|
|
|
|
"three/": "https://esm.sh/three/"
|
|
|
|
}}
|
|
|
|
</script>
|
|
|
|
<script type="module" src="app.js"></script>
|
2021-07-05 20:51:08 -04:00
|
|
|
</body>
|
|
|
|
</html>
|