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

Share Improve this question edited 2 days ago Mister Jojo 22.5k6 gold badges25 silver badges44 bronze badges asked 2 days ago Jim StevensJim Stevens 1 New contributor Jim Stevens is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 1
  • Welcome to Stack Overflow! Questions seeking code help must include the shortest code necessary to reproduce it in the question itself preferably in a Stack Snippet using the <> 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
Add a comment  | 

1 Answer 1

Reset to default 0

Your 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