你好,我正在試圖創建懸停對img的影響。問題懸停對圖像的影響
HTML
<div>
<img src="http://placehold.it/350x150"/>
<div class="link-cont"><a href="#">click here to see more info</a></div>
</div>
CSS
div {
width: 350px;
position: relative;
}
.link-cont {
background: red;
position: absolute;
bottom: 0;
height: 100px;
opacity: 0;
transition: all 0.4s;
}
div:hover .link-cont {
opacity: 1;
bottom:-100px;
}
我需要一個這樣的事情,當它
但我得到這樣的事情
用戶懸停
有人可以幫我實現我所試圖做的..
jsFid - >http://jsfiddle.net/Nnd7w/
應該發生在徘徊呢? 'div'應該在圖像下面? – Sergio
yes .. div應該在圖像下方。 –
這種嗎? http://jsfiddle.net/Nnd7w/3/ – Sergio