我與X3DOM的第1次工作(雖然我做了很多VRML的回到了一天。爲什麼在X3DOM中不會紋理加載圖像?
我試圖用一個紋理圖像文件一個簡單的例子,但圖像從未負荷。這裏是我所看到的(使用Chrome版本43.0.2357.130米): 圓圈永久旋轉,加載: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>
的形象存在於nd存儲在同一個目錄下。爲什麼不會爲我加載圖像?
如果您沒有使用正確的Web服務器,則無法加載紋理,因爲它們是通過XHR加載的。 – mistapink