开发者

How to assign custom cursors to entire website

I want to assign custom cursors to my entire web开发者_运维问答site. I am using asp.net 4.0.

I have a master page and what I want is to assign a default custom cursor to the page and have all links use another custom cursor

Is this possible?


You can use CSS:

style="cursor: url(mycursor.cur), pointer;"

Note: Only .cur and .ani file types are supported as of IE6.


body {
  cursor: url(path/to/cursor.cur), pointer;
}

Further Reading.


If am understanding you correctly, You are looking to do something like this with css

body
{
    cursor: crosshair;
}


makes the body one cursor type

body {
  cursor: url(path/to/cursor.ico) pointer;
}

makes your anchors another type

a, a:active, a:hover, a:visited{
  cursor: url(path/to/different_cursor.ico) pointer;
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜