vr.html 676 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  5. <meta charset="utf-8"/>
  6. <title>3D Tiles Renderer VR Example</title>
  7. <style>
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. html {
  13. overflow: hidden;
  14. font-family: Arial, Helvetica, sans-serif;
  15. user-select: none;
  16. }
  17. canvas {
  18. outline: none;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <script src="./vr.js" type="module"></script>
  24. </body>
  25. </html>