减小 a-frame canvas 的大小以显示其他 HTML 元素
Reducing the size of the a-frame canvas to show other HTML elements
如果可以的话,我可以在代码中更改 aframe canvas 的大小吗?
我想显示一个表单,以便用户可以在aframe场景中修改对象参数。
看到这个问题。
您可以使用 embedded
组件删除全屏样式并使其可嵌入到网页中。 https://aframe.io/docs/1.1.0/components/embedded.html
<a-scene embedded>
<!-- scene stuff -->
</a-scene>
那么你就可以随心所欲<a-scene>
a-scene { display: block; width: 50%; }
如果可以的话,我可以在代码中更改 aframe canvas 的大小吗?
我想显示一个表单,以便用户可以在aframe场景中修改对象参数。
看到这个问题。
您可以使用 embedded
组件删除全屏样式并使其可嵌入到网页中。 https://aframe.io/docs/1.1.0/components/embedded.html
<a-scene embedded>
<!-- scene stuff -->
</a-scene>
那么你就可以随心所欲<a-scene>
a-scene { display: block; width: 50%; }