如何减少A帧360度图像尺寸

时间:2017-08-17 16:29:27

标签: aframe

我想在<h1>下面添加<p>a-scene个标签。

例如

    <a-scene>
  <a-sky src="http://i.imgur.com/9zATQ6s.jpg" rotation="0 -130 0"></a-sky>

  <a-text font="kelsonsans" value="Puy de Sancy, France" width="6" position="-2.5 0.25 -1.5"
          rotation="0 15 0"></a-text>
</a-scene>
<h1>test</h1>

现在test在我的浏览器中不可见。我可以显示test以及如何减少a-scene尺寸

1 个答案:

答案 0 :(得分:1)

您可以使用A-Frame的嵌入式组件来调整画布大小:

<a-scene embedded></a-scene>
查看Example / Docs