2014-12-22 257 views
-2

有沒有辦法將圖像上的鼠標更改爲mouseover上的圖像?鼠標懸停更改爲圖像

<a class="menu_links" onclick="displayData(11,1,0,'A')" onmouseover=""> A </a> 

 

onmouseover="cursor: hand (a pointing hand)" 
+1

'IMG {光標:指針;}' – dfsq

回答

0

a { 
 
    width: 300px; 
 
    height: 100px; 
 
    border: 1px solid #000; 
 
    float: left; 
 
    } 
 
a:hover{ 
 
    cursor: url(http://cur.cursors-4u.net/cursors/images10/cur918.png), auto; 
 
    }
<a class="menu_links" onclick="displayData(11,1,0,'A')"> Hover </a>

+0

嗨抱歉,但這並不能幫助我。謝謝你。一旦鼠標移動到圖像上,我試圖將光標變成圖像。 –

+0

不知道我是否正確地得到你。你可以用圖片替換錨點,同樣適用於你 –

相關問題