原始的视频显示一个视频平面纹理。它是一个实体规定几何元素 geometry的几何平面plane
。
例子
<a-scene>
<a-assets>
<video id="penguin-sledding" autoplay loop="true" src="penguin-sledding.mp4">
</a-assets>
<!-- Using the asset management system. -->
<a-video src="#penguin-sledding" width="16" height="9" position="0 0 -20"></a-video>
<!-- Defining the URL inline. Not recommended but more comfortable for web developers. -->
<a-video src="airbending.mp4"></a-video>
</a-scene>
属性
属性 | 组件映射 | 默认值 |
---|---|---|
height | geometry.height | 1.75 |
width | geometry.width | 3 |
警告
iOS有很多限制在浏览器中播放视频。玩一个内联视频纹理,我们必须:
- Set the meta tag (will be injected if missing).
- Set the webkit-playsinline attribute to the video element.
- Pin the webpage to the iOS homescreen.