您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.html 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 A-Frame</title>
  7. <link href="demo.css" rel="stylesheet">
  8. <script src="../../dist/martins.js"></script>
  9. <script src="https://cdn.jsdelivr.net/npm/aframe@1.3.0/dist/aframe-v1.3.0.min.js"></script>
  10. <script src="../assets/aframe-particle-system-component.min.js"></script>
  11. <script src="demo.js"></script>
  12. <script src="../assets/aframe-with-martins.js"></script>
  13. </head>
  14. <body>
  15. <div id="ar-viewport">
  16. <div id="ar-hud" hidden>
  17. <img id="scan" src="../assets/scan.png">
  18. <a id="about" href="NOTICE.html"></a>
  19. </div>
  20. </div>
  21. <img id="my-reference-image" src="../assets/my-reference-image.webp" hidden>
  22. <!-- This is a scene -->
  23. <a-scene ar-scene>
  24. <a-camera ar-camera></a-camera>
  25. <!-- Whatever you add to <ar-root> will appear in AR -->
  26. <ar-root>
  27. <!-- Ground plane -->
  28. <a-plane position="0 -0.5 -0.5" rotation="-90 0 0" width="2" height="1" color="indigo">
  29. <!-- 3D model -->
  30. <a-entity gltf-model="#my-3d-model"></a-entity>
  31. <!-- Particles -->
  32. <a-entity rotation="90 0 0">
  33. <a-entity position="0.75 0 0" particle-system="texture: ../assets/particle.png; color: #03f; opacity: 0.33; size: 20; maxAge: 0.64; velocityValue: 0 6.5 0; velocitySpread: 0 0 0; accelerationSpread: 2 0 2; particleCount: 2000"></a-entity>
  34. <a-entity position="-0.75 0 0" particle-system="texture: ../assets/particle.png; color: #f70; opacity: 0.33; size: 20; maxAge: 0.64; velocityValue: 0 6.5 0; velocitySpread: 0 0 0; accelerationSpread: 2 0 2; particleCount: 2000"></a-entity>
  35. </a-entity>
  36. <!-- Rotating text -->
  37. <a-entity animation="property: rotation.z; from: 0; to: 360; dur: 2000; loop: true; easing: linear">
  38. <a-text value="It works!" font="mozillavr" color="#fe3" scale="-1 -1 1" rotation="-90 0 0" position="0 0.40 1" align="center"></a-text>
  39. <a-text value="Cool!" font="mozillavr" color="#8ef" scale="1 1 1" rotation="90 0 0" position="0 -0.40 1" align="center"></a-text>
  40. </a-entity>
  41. </a-plane>
  42. </ar-root>
  43. <!-- Declare external media files here -->
  44. <a-assets>
  45. <a-asset-item id="my-3d-model" src="../assets/my-3d-model.glb"></a-asset-item>
  46. </a-assets>
  47. </a-scene>
  48. </body>
  49. </html>