30 lines
		
	
	
		
			674 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			674 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!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>
 | |
|         <script type="importmap">
 | |
|             {"imports": {
 | |
|                 "three": "https://esm.sh/three",
 | |
|                 "three/": "https://esm.sh/three/"
 | |
|             }}
 | |
|         </script>
 | |
|         <script type="module" src="app.js"></script>
 | |
|     </body>
 | |
| </html> |