You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

video.html 1.3KB

12345678910111213141516171819202122232425262728
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <title>MARTINS.js WebAR demo with three.js and touch interaction</title>
  7. <link href="demo.css" rel="stylesheet">
  8. <script src="../../dist/martins.min.js"></script>
  9. <script src="https://cdn.jsdelivr.net/npm/three@0.147.0/build/three.min.js"></script>
  10. <script src="https://cdn.jsdelivr.net/npm/three@0.147.0/examples/js/loaders/FontLoader.js"></script>
  11. <script src="https://cdn.jsdelivr.net/npm/three@0.147.0/examples/js/geometries/TextGeometry.js"></script>
  12. <script src="../assets/three-with-martins.js"></script>
  13. <script src="demo.js"></script>
  14. </head>
  15. <body>
  16. <div id="ar-viewport">
  17. <div id="ar-hud" hidden>
  18. <img id="scan" src="../assets/scan.png">
  19. <a id="about" href="NOTICE.html"></a>
  20. </div>
  21. </div>
  22. <img id="my-reference-image" src="../assets/my-reference-image.webp" hidden>
  23. <video id="my-video" hidden muted loop playsinline autoplay>
  24. <source src="../assets/my-video.webm" type="video/webm" />
  25. <source src="../assets/my-video.mp4" type="video/mp4" />
  26. </video>
  27. </body>
  28. </html>