问题描述
我刚刚构建了这个github页面,但是由于某些原因我的图像没有随页面一起加载。
这是my site
的链接这是我的repo
请注意,我将所有图像都放在一个名为“ _imagens”的文档中,并且在我的文档中正确调用了它。
在第一页上:
/*Configuracoes da imagem de fundo*/
body {
background-image: linear-gradient(rgba(0,0.5),rgba(0,0.5)),url("_imagens/fundo.jpg");
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
background-position: center center;
height: 100vh;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}
在第二页上:
<header id="cabecalho">
<img src="_imagens/poli.png" width="75px" id="poli">
<h1>
Notas Poli
</h1>
<img src="_imagens/chapeu.png" width="75px" id="chapeu">
</header>
它们在我的计算机上工作正常,所以我认为这是我在github上所做的,但是我不知道会发生什么。
解决方法
我在using a relative path之前提到过,所以请尝试:
<img src="./_imagens/chapeu.png" width="75px" id="chapeu">
或
<img src="./projeto poli junior/_imagens/chapeu.png" width="75px" id="chapeu">