0

是否可以在网页上创建透明的 HTML 光标?我使用 div 作为光标,我想让 div 50% 透明:http: //jsfiddle.net/mCgmP/16/

<div id="cursor"><font size="6">I want this cursor to be 50% transparent!</font></div>
4

2 回答 2

2

也许这会有所帮助:

#cursor
{
opacity:0.4;
filter:alpha(opacity=40); /* For IE8 and earlier */

}

这是一个工作演示

于 2013-04-20T05:10:23.233 回答
0

也许您正在寻找:

#cursor{background:rgba(255,255,255,0.5);}

包括文字:

#cursor{background:rgba(255,255,255,0.5);color:rgba(255,255,255,0.5);}
于 2013-04-20T05:07:49.210 回答