gpt4 book ai didi

webvr - 为什么我的视频或 videosphere 无法在移动设备上的 A-Frame VR 中播放?

转载 作者:行者123 更新时间:2023-12-01 17:57:38 24 4
gpt4 key购买 nike

我有一个带有视频或 videosphere 的 A 框架场景:

<a-scene>
<a-assets>
<video id="video" src="anothervideo.mp4></video>
</a-assets>
<a-video src="myvideo.mp4></a-video>
<a-videosphere src="#video></a-videosphere>
</a-scene>

当我在 iOS 或 Android 中测试时,我只看到黑屏。它可以在桌面上运行。

最佳答案

说到利用 Enter VR 按钮,请尝试:

<a-scene>
<a-assets>
<video id="video" src="anothervideo.mp4"></video>
</a-assets>
<a-video class="video" src="myvideo.mp4"></a-video>
<a-videosphere class="video" src="#video></a-videosphere>
</a-scene>

<script>
function playVideo () {
var els = document.querySelectorAll('.video')
Array.prototype.slice.call(els).forEach(function(el) {
el.components.material.material.map.image.play()
})
}

document.querySelector('.a-enter-vr-button').addEventListener('click', playVideo)
</script>

关于webvr - 为什么我的视频或 videosphere 无法在移动设备上的 A-Frame VR 中播放?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38380912/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com