所以,我的img裏格是這樣的:廣場背景DIV
<div class="row text-center about__gallery">
<div class="col-xs-12 col-sm-4">
<div class="about__gallery--first img">
<img />
</div>
</div>
.
.
.
</div>
我想達到的效果是讓格顏色完全相同的大小,因爲它背後IMG(懸停我我會移動IMG一點點)。 SCSS看起來是這樣的:
.about__gallery{
margin-top: 5%;
.img{
background-repeat:no-repeat;
background-size:cover;
width:70%;
height:230px;
margin-bottom: 15%;
img{
z-index: 3;
}
&:before {
position: absolute;
content: " ";
display: block;
width: 70%;
height: 230px;
background-color: $color-blue;
z-index: -100;
}
}
.about__gallery--first{
margin-left: 45%;
img{
content:url("../img/aboutus_pic1.png");
width: 100%;
}
}
.
.
不幸的結果是這樣的:刪除,因爲信譽
編輯與全碼:
<div class="row text-center about__gallery">
<div class="col-xs-12 col-sm-4">
<div class="about__gallery--first img">
<img class="about__gallery__img--bg" />
</div>
</div>
<div class="col-xs-12 col-sm-4">
<div class="about__gallery--second img">
<img class="about__gallery__img--bg" />
</div>
</div>
<div class="col-xs-12 col-sm-4">
<div class="about__gallery--third img">
<img class="about__gallery__img--bg" />
</div>
</div>
</div>
而且我完全.scss看起來是這樣的:
.about__gallery{
margin-top: 5%;
margin-bottom: 10%;
.img {
position: relative;
margin-bottom: 15%;
img {
width: 100%;
height: auto;
}
&:before {
position: absolute;
top: 0;
left: 0;
content: " ";
display: block;
width: 100%;
height: 100%;
background-color: $color-blue;
z-index: -100;
}
}
.about__gallery--first{
margin-left: 45%;
margin-bottom: auto;
img.about__gallery__img--bg{
content:url("../img/aboutus_pic1.png");
width: 100%;
}
}
.about__gallery--second{
margin:auto;
img.about__gallery__img--bg{
content:url("../img/aboutus_pic2.png");
width: 100%;
}
}
.about__gallery--third{
margin-left: -15%;
margin-bottom: auto;
img.about__gallery__img--bg{
content:url("../img/aboutus_pic3.png");
width: 100%;
}
}
}
現在我的頁面看起來像這樣:RESULT
我的目標是有類似的東西在我的網站:GOAL
增加懸停不工作........ codepen.io/Kreha/pen/vmbzPb
媽真的很好.........但僅限於一個畫面由於某種原因,工作:(我有2個在同一行中,他們都搞砸了。我將添加我的完整代碼,如果能夠幫助我,我會非常感謝。 – Kreha
我已經更新了[codepen](https://codepen.io/jmsessink/pen/eWbGrb)和更多圖片我刪除了第一列的img上的左邊距,因爲它與網格在語義上是不正確的(它會混淆圖像的大小),我也用變量設置圖像寬度,並使用它將列中的背景色與'left:50%; margin-left'對齊: - (圖像寬度的一半)px;' – JSess
隨意設置一個更詳細的使用你的代碼的codepen,因爲很難真正看到你想要實現的(邊距和位置)沒有整個圖片。 – JSess