javascript - Create a transparent HTML cursor -
is possible create transparent html cursor on web page? i'm using div cursor, , want make div 50% transparent: http://jsfiddle.net/mcgmp/16/
<div id="cursor"><font size="6">i want cursor 50% transparent!</font></div>
maybe help:
#cursor { opacity:0.4; filter:alpha(opacity=40); /* ie8 , earlier */ }
Comments
Post a Comment