美文网首页
vr打开新世界

vr打开新世界

作者: 拾钱运 | 来源:发表于2022-01-07 17:55 被阅读0次

    https://techbrood.com/aframe
    代码初体验 直接粘贴复制创建html ,奇妙就出现了

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>测试vr</title>
        <script src="http://wow.techbrood.com/libs/aframe/aframe-v1.1.0.min.js"></script>
    </head>
    <body>
     
          <script src="https://unpkg.com/aframe-environment-component@1.1.0/dist/aframe-environment-component.min.js"></script>
          <a-scene environment="preset: forest">
              <a-assets>
                  <img id="boxTexture" src="/uploads/1707/meteorite.jpg">
              </a-assets>
          
              <a-box src="#boxTexture" position="0 2 -5" rotation="0 45 45" scale="2 2 2" animation__position="property: object3D.position.y; to: 2.2; dir: alternate; dur: 2000; loop: true" animation__mouseenter="property: scale; to: 2.3 2.3 2.3; dur: 300; startEvents: mouseenter"
              animation__mouseleave="property: scale; to: 2 2 2; dur: 300; startEvents: mouseleave"></a-box>
          
              <a-entity text="value: Hello, A-Frame; color: #FAFAFA; width: 5; anchor: align" position="-0.9 0.2 -3" scale="1.5 1.5 1.5"></a-entity>
              <a-camera>
                  <a-cursor color="#FAFAFA"></a-cursor>
              </a-camera>
          </a-scene>
          
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:vr打开新世界

          本文链接:https://www.haomeiwen.com/subject/olajcrtx.html