我有3個圖像,我通過CSS編碼有邊界懸停。 它很簡單,很好,但懸停時圖像保持移動。如何在邊界懸停後停止圖像移動?
http://coreneto.com/rental/static/dist/img/cam.jpg http://coreneto.com/rental/static/dist/img/car.jpg http://coreneto.com/rental/static/dist/img/phone.jpg
這裏是現場:JSfiddle
下面是代碼:
<center>
<a class="round" href="http://coreneto.com/rental/cars"><img src="http://coreneto.com/rental/static/dist/img/cam.jpg" width="200" height="200"></a>
<a class="round" href="http://coreneto.com/rental/cars"><img src="http://coreneto.com/rental/static/dist/img/car.jpg" width="200" height="200"></a>
<a class="round" href="http://coreneto.com/rental/tickets"><img src="http://coreneto.com/rental/static/dist/img/phone.jpg" width="200" height="200"></a>
</center>
這裏是CSS:
a.round:hover {border: 5px solid #005FD0; display: inline-block; position: static;
cursor: pointer; }
什麼是正確的CSS方法我需要使用,以保持他們在的地方hovring什麼時候?
另外值得注意你想在懸停元素的顯示屬性更改 - 這是最好的設置這個元素本身就避免突然變動,因爲您的顯示類型與您的懸停效果無關。 – Doidgey
@Doidgey相同。其實,我會說你想改變懸停的唯一的東西是'border-color'。你不想改變'border-width','border-style','display','position'或'cursor'(光標已經代表了只有當你的鼠標懸停在它上面時纔會生效的東西)把它放在懸停規則裏只是多餘的) – Katana314
我完全同意。 – Doidgey