2
我試圖在圖像上創建一個圖像描述框,我希望當您將鼠標懸停在圖像上圖像褪色。圖像描述框與圖像與CSS&html
這是我走到這一步:
HTML:
<div class="app-img-wrapper">
<a href="images/Example/pexels-photo-344544.jpeg" title="Image 1"> <img src="images/Example/pexels-photo-344544.jpeg" class="img-responsive" alt="App"> <h2><span>Image Text</span></h2> </a>
</div>
CSS:
.app-img-wrapper {
position: sticky;
}
.app-img-wrapper h2 {
position: absolute;
bottom: 0%;
left: 0;
width: 100%;
}
.app-img-wrapper h2 span{
color: white;
font-size: 35px;
font-weight: 400;
text-align: center;
/* fallback color */
background: rgba(0, 0, 0, 0.7);
padding: 10px;
}
結果:
正如你所看到的,我幾乎沒有,但有與盒匹配圖像尺寸的麻煩。如果有人有任何提示,請在下面建議