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