2013-07-24 61 views
0

我有一個svg圖像。我需要將該svg圖像設置爲使用javascript的鼠標指針。將SVG設置爲鼠標指針圖像

我可以能夠設置使用下面的代碼的圖像作爲鼠標指針:

$("div").mouseover(function(){ 
      $(this).attr("style","cursor: url(red_bucket.png), pointer;"); 
     }); 

是否有任何possiblities設置SVG的鼠標指針...?

+0

我也想知道如何做到這一點。它不適合我。 –

回答

2

這應該工作

$("div").mouseover(function(){ 
     $(this).attr("style","cursor: url('red_bucket.svg'), pointer;"); 
    }); 
+0

它不工作.... – ashu

+0

SVG文件是否必須是特殊類型的SVG? –