我用:
更改了默认光标的图像html {
cursor: url("media/custom.cur"),auto;
}
这仅适用于默认光标。 怎么可能改变指针?
THX
答案 0 :(得分:0)
尝试为通常具有指针光标的所有元素定义游标,并在URL之后添加pointer
,如下所示:
a, button, input[type=submit], input[type=reset] {
cursor: url("..."), pointer;
}
答案 1 :(得分:0)
body{
cursor:url('url of the image in single quotes') 2 2, auto;
}
2 2-是您选择的x,y坐标值。
自动-关键字自动确定链接等。