-3
我有一張桌上有足球運動員,所有玩家的名字都是超鏈接。當用戶點擊鏈接時,一個lightbox事件開始並顯示所選播放器的圖片。所以我想要發生的事情是,當用戶將鼠標懸停在鏈接上時,會顯示該實際玩家圖片的縮略圖。當鼠標懸停在超鏈接上時顯示圖片縮略圖(jQuery,CSS?)
我有一張桌上有足球運動員,所有玩家的名字都是超鏈接。當用戶點擊鏈接時,一個lightbox事件開始並顯示所選播放器的圖片。所以我想要發生的事情是,當用戶將鼠標懸停在鏈接上時,會顯示該實際玩家圖片的縮略圖。當鼠標懸停在超鏈接上時顯示圖片縮略圖(jQuery,CSS?)
Simply st。像這樣:
<a href="">
Player name
<img src="thumb.jpg">
</a>
<style>
a {position: relative;}
img {display: none; width: 100px; height: 100px; background: red; position: absolute; top: 20px; left: 0;}
a:hover img {display: block;}
</style>
圖像上有position: absolute;
以避免在文件的其餘部分移動的其他元素。
您可以在CSS中使用 鏈接 : 一> DIV {顯示:無; } a:hover> div {display:block; } – user3263194 2015-01-04 10:54:43