-1
我想顯示A幀本地視頻,並在同一臺計算機上。但是,在瀏覽器上,沒有任何顯示,屏幕是黑色的(似乎沒有渲染)。 我只是對360視頻源代碼做了一點改動,而我是較新的Web開發人員。所以請幫助我,告訴我我的錯在哪裏。 我的源代碼是那些:A幀本地視頻無法顯示
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>360 Video</title>
<meta name="description" content="360 Video — A-Frame">
<script src="../../../dist/aframe-master.js"></script>
</head>
<body>
<a-scene>
<a-assets>
<!-- tt.mp4 is my video file and with index.html at the same folder -->
<video id="video" src="tt.mp4" autoplay loop crossorigin></video>
</a-assets>
<a-videosphere src="#video" rotation="0 180 0"></a-videosphere>
</a-scene>