This commit is contained in:
2022-10-22 09:06:40 -06:00
commit 3c28404b30
3 changed files with 16 additions and 0 deletions

15
index.html Normal file
View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<script type="module" src="panorama-viewer.js"></script>
<script type="module">
import { hello } from "./panorama-viewer.js";
hello();
</script>
</head>
<body>
<h1>Panorama Viewer</h1>
<canvas></canvas>
<img height="400" width="800" src="Provo_River_Falls_360.JPG">
</body>
</html>