aframe 入門

A-Frame 可以從普通的 HTML 檔案開發而無需安裝任何東西! 嘗試使用 A-Frame 重新組合 Glitch 上的入門示例的好方法,Glitch 是一個即時託管和免費部署的線上程式碼編輯器。或者建立一個 .html 檔案並在 head 中包含 A-Frame:

<html>
  <head>
    <script src="https://aframe.io/releases/0.5.0/aframe.min.js"></script>
  </head>
  <body>
    <a-scene>
      <a-box position="-1 0.5 -3" rotation="0 45 0" color="#4CC3D9"></a-box>
      <a-sphere position="0 1.25 -5" radius="1.25" color="#EF2D5E"></a-sphere>
      <a-cylinder position="1 0.75 -3" radius="0.5" height="1.5" color="#FFC65D"></a-cylinder>
      <a-plane position="0 0 -4" rotation="-90 0 0" width="4" height="4" color="#7BC8A4"></a-plane>
      <a-sky color="#ECECEC"></a-sky>
    </a-scene>
  </body>
</html>

包括 JS Build

要將 A-Frame 包含到 HTML 檔案中,我們刪除指向 CDN 構建的 script 標記:

<head>
  <script src="https://aframe.io/releases/0.5.0/aframe.min.js"></script>
</head>

從 npm 安裝

我們也可以通過 npm 安裝 A-Frame:

$ npm install aframe

然後我們可以將 A-Frame 繫結到我們的應用程式中。例如,使用 Browserify 或 Webpack:

require('aframe');

如果使用 npm,則可以使用角度,A-Frame 的命令列介面。angle 可以使用單個命令初始化場景模板:

npm install -g angle && angle initscene