ar小Demo(aframe.js)

官网:

https://aframe.io/

中文网:

https://www.techbrood.com/aframe/guides?p=building-a-basic-scene

虚拟现实

https://mp.weixin.qq.com/s/6ddpdknOHAKO9ORUPIqnAg

3d模型

https://www.techbrood.com/aframe/introduction?p=models

Demo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<style>
     #arjsDebugUIContainer {
       opacity: 0;
       /* transform: scale(); */
     }
   </style>
   <!-- 这个是一个做3d的 -->
   <script src="./aframe.min.js"></script>
 
   <!-- 添加ar 基于aframe 库的 -->
   <script src="./aframe-ar.js"></script>
 </head>
 <body style="margin: 0px; overflow: hidden">
   <!-- 来个场景标签包含所有实体 并且初始化arjs  -->
   <a-scene embedded arjs>
     <!-- 添加gltf  导入模型 -->
     <a-entity
       gltf-model="./demo/scene.gltf"
       position="0 -0.2 -1.5"
       scale="1 1 1"
       rotation="30 0 0"
     >
       <a-animation
         attribute="rotation"
         dur="3000"
         to="0 0 360"
         repeat="indefinite"
       ></a-animation>
     </a-entity>
     <!-- <a-box color="red" position="0 2 -50" rotation="0 45 45" scale="2 2 2">
     </a-box> -->
     <!-- <a-entity gltf-model="#tree" scale="0.01 0.01 0.01"></a-entity> -->
     <!-- 添加摄像头 -->
     <a-marker-camera preset="hiro"></a-marker-camera>
   </a-scene>
 </body>

  

posted @   乔木滴滴  阅读(243)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
点击右上角即可分享
微信分享提示