我試圖讓我的代碼在懸停在已放置的某些圖像上的過程中切換圖像。有誰知道解決方案?下面的代碼:在鼠標懸停期間切換圖像
.first-image {
float: left;
}
.first-image:hover {
background-image: url(0-1/0_Hover.png)
}
.second-image {
float:right;
}
.second-image:hover {
background-image: url(0-1/1_Hover.png)
}
_
<div class="first-image">
<a href="https://bi-na-ri-es.com/black-white"><img src="0-1/0_No_Hover.png" width="946" height="1066" alt=""/></a>
</div>
<div class="second-image">
<img src="0-1/1_No_Hover.png" width="946" height="1066" alt=""/>
</div>
我不想彼此之間的圖像切換。是否有替代方案不讓圖像在對方之間切換?當鼠標懸停在其中一個圖像上時,我只需將圖像源更改爲計算機中的其他圖像 – unowncoder