我正在尝试将我自己的 3D GLB 模型添加到谷歌场景查看器通用代码中。但是,当我用下载的 GLB 模型替换椅子模型的链接时,该模型不会显示在网页上。
我使用了我自己下载的模型。我还尝试通过下载使用通用代码中的同一把椅子。我看着检查器,虽然占位符存在,但似乎空间是空的,替代文本也不显示
这是我正在使用的代码:
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>3DModel</title>
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.js"></script>
<script nomodule src="https://unpkg.com/@google/model-viewer/dist/model-viewer-legacy.js"></script>
</head>
<body>
<model-viewer src="chair.glb" auto-rotate camera-controls alt="cube" background-color="#455A64"></model-viewer>
</body>
</html>
我所做的只是将 src 从到 chair.glb 的链接到下载模型的位置(与索引代码位于同一文件夹中)
我怎样才能解决这个问题?