我真的是A框架新手,并尝试显示图像。我从youtube教程中使用版本2完成了此操作,但是当我将版本更改为3或更高版本时(我总是需要使用最新版本,当前为8),它不再显示,但似乎已加载。
<!DOCTYPE html>
<html>
<head>
<script src="https://aframe.io/releases/0.2.0/aframe.min.js"></script>
</head>
<body>
<a-scene>
<a-assets>
<img id="image" src="winterOriginal.jpg">
</a-assets>
<a-image src="#image" width="16" height="9"></a-image>
</a-scene>
</body>
</html>