-2
我目前使用CSS來改變我的圖像源,但它是非常突然的。如何使用css或jquery使鼠標在圖像上平滑地變化並將鼠標移出?平滑地改變圖像來源懸停
當前代碼:
.containerBox1:hover{
\t content: url('http://example.com/prouser-newimage.png');
}
.containerBox2:hover{
\t content: url('http://example.com/domuser-newimage.png');
}
.containerBox3:hover{
\t content: url('http://example.com/aboutus-newimage.png');
}
<a href="http://example.com/prouser">
<div class="containerBox1">
<img src="http://example.com/prouser.png"/>
</div>
</a>
<a href="http://example.com/domuser/">
<div class="containerBox2">
<img src="http://example.com/domuser.png"/>
</div>
</a>
<a href="http://example.com/aboutus">
<div class="containerBox3">
<img src="http://example.com/aboutus.png"/>
</div>
</a>
謝謝 d
那麼怎麼樣的一些基本的研究? https://www.google.com/search?q=change+image+with+transition+animation – CBroe