我是第一次使用 X3DOM(虽然我以前做过很多 VRML。
我正在尝试一个带有纹理图像文件的简单示例,但图像永远不会加载。这是我看到的(使用 Chrome 版本 43.0.2357.130 m): 圆圈永远旋转,并且 Loading: 1 保持不变。我在另一个文件上遇到了同样的问题(除了它有 7 个图像,并且消息显示为“正在加载:7”。
这是我的代码:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html;charset=utf-8'></meta>
<link rel='stylesheet' type='text/css' href='http://www.x3dom.org/x3dom/release/x3dom.css'></link>
<script type='text/javascript' src='http://www.x3dom.org/x3dom/release/x3dom.js'></script>
</head>
<body>
<x3d width='500px' height='400px'>
<scene>
<shape>
<appearance>
<ImageTexture url="wood11.png"><ImageTexture/>
</appearance>
<box> </box>
</shape>
</scene>
</x3d>
</body>
</html>
图像存在并存储在同一目录中。为什么我无法加载图像?