admin管理员组文章数量:1345574
I am trying to import a 3d model to my HTML page (I have been using AI for assistance), and when I do, I am seeing this Gray bar at the top of my model every time I refresh. Does anyone have a clue on how to get rid of it?
I added a reference photo.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>3D Avatar</title>
<script
type="module"
src="/@google/model-viewer/dist/model-viewer.min.js">
</script>
<link rel="stylesheet" href="modeltest.css" />
</head>
<body>
<div id="model-container">
<model-viewer
src="goodtesterhehe.glb"
alt="3D Avatar"
auto-rotate
autoplay
camera-orbit="0deg 75deg 2.5m"
field-of-view="30deg"
camera-target="0m .8m 0m"
shadow-intensity="1"
disable-zoom
reveal="auto"
loading="eager"
style="--poster-color: transparent;"
></model-viewer>
</div>
</body>
</html>
CSS:
@import url(':wght@900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #f5f5f5;
font-family: 'Raleway', sans-serif;
height: 100vh;
width: 100vw;
overflow: hidden;
display: flex;
justify-content: flex-end;
align-items: center;
}
#model-container {
width: 60vw;
height: 80vh;
padding: 0;
margin: 0;
transform: translateX(20px);
}
#model-container model-viewer {
width: 100%;
height: 100%;
display: block;
margin: 0;
padding: 0;
}
Grey Bar that Appears on Top of Model
I am trying to import a 3d model to my HTML page (I have been using AI for assistance), and when I do, I am seeing this Gray bar at the top of my model every time I refresh. Does anyone have a clue on how to get rid of it?
I added a reference photo.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>3D Avatar</title>
<script
type="module"
src="https://unpkg/@google/model-viewer/dist/model-viewer.min.js">
</script>
<link rel="stylesheet" href="modeltest.css" />
</head>
<body>
<div id="model-container">
<model-viewer
src="goodtesterhehe.glb"
alt="3D Avatar"
auto-rotate
autoplay
camera-orbit="0deg 75deg 2.5m"
field-of-view="30deg"
camera-target="0m .8m 0m"
shadow-intensity="1"
disable-zoom
reveal="auto"
loading="eager"
style="--poster-color: transparent;"
></model-viewer>
</div>
</body>
</html>
CSS:
@import url('https://fonts.googleapis/css2?family=Raleway:wght@900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #f5f5f5;
font-family: 'Raleway', sans-serif;
height: 100vh;
width: 100vw;
overflow: hidden;
display: flex;
justify-content: flex-end;
align-items: center;
}
#model-container {
width: 60vw;
height: 80vh;
padding: 0;
margin: 0;
transform: translateX(20px);
}
#model-container model-viewer {
width: 100%;
height: 100%;
display: block;
margin: 0;
padding: 0;
}
Grey Bar that Appears on Top of Model
1 Answer
Reset to default 0Your body has a grey background (#f5f5f5) and is 100view height. The model container is 80 view height; therefore some background grey will show through. I assume its visible below the model container too.
You could remove the background-color
from the body
css:
body {
// background-color: #f5f5f5; // remove this line
font-family: 'Raleway', sans-serif;
height: 100vh;
width: 100vw;
overflow: hidden;
display: flex;
justify-content: flex-end;
align-items: center;
}
Another option might be to make the model-container
height 100%.
#model-container {
width: 60vw;
height: 100%; // try this
padding: 0;
margin: 0;
transform: translateX(20px);
}
本文标签: htmlGray Bar that appears every time I load my GLB FileStack Overflow
版权声明:本文标题:html - Gray Bar that appears every time I load my GLB File - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743810371a2542956.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
<>
icon. See How to create a Minimal, Reproducible Example. Running your code as is fails due to the model not being linked. – Paulie_D Commented 2 days ago