作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有视频或 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/
我没有找到任何放大视频圈的方法。尝试更改半径,但它不起作用。我想根据鼠标滚轮 Action 进行缩放。
我正在从事 A-Frame VR 项目,但在 a-videophere 元素上播放视频时遇到问题。 我遵循的准则:- 将 playsinline 或 webkit-playsinline 放在视频 A
我正在尝试构建一个 aFrame 项目并在该项目中附加一个 360 度视频。我面临的问题是 360 度视频可以在我的桌面上的 Google Chrome 上运行。但它在我的 Android 手机上无法
我有两个视频资源,我想根据用户交互在这两个视频资源之间进行切换。 .mp4" autoplay loop crossorigin> .mp4" autoplay loop crossorig
我有一个带有视频或 videosphere 的 A 框架场景: 当我在 iOS 或 Android 中测试时,我只看到黑屏。它可以在桌面上运行。 最佳答案 说到利
我是一名优秀的程序员,十分优秀!