X3DOM を初めて使用しています (ただし、当時は多くの VRML を使用していました。
テクスチャの画像ファイルを使用して簡単な例を試していますが、画像が読み込まれません。これが私が見ているものです(Chromeバージョン43.0.2357.130 mを使用):
円は永遠に回転し、Loading:1のままです。別のファイルでも同じ問題があります (ただし、7 つの画像があり、メッセージには "Loading: 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>
イメージが存在し、同じディレクトリに保存されます。画像が読み込まれないのはなぜですか?