是否可以将外部图像 URL 用于 CSS 自定义光标?以下示例不起作用:
HTML:
<div class="test">TEST</div>
CSS:
.test {
background:gray;
width:200px;
height:200px;
cursor:url('http://upload.wikimedia.org/wikipedia/commons/d/de/POL_apple.jpg');
}
小提琴:http: //jsfiddle.net/wNKcU/4/