如何将自定义光标分配给整个网站

发布于 2024-10-19 06:28:00 字数 110 浏览 1 评论 0原文

我想将自定义光标分配给我的整个网站。我使用的是asp.net 4.0。

我有一个母版页,我想要的是为页面分配一个默认的自定义光标,并让所有链接使用另一个自定义光标

这可能吗?

I want to assign custom cursors to my entire website. 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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

羁拥 2024-10-26 06:28:00

您可以使用 CSS

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

注意:自 IE6 起仅支持 .cur 和 .ani 文件类型。

You can use CSS:

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

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

百变从容 2024-10-26 06:28:00
body {
  cursor: url(path/to/cursor.cur), pointer;
}

进一步阅读

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

Further Reading.

白云不回头 2024-10-26 06:28:00

如果我理解正确,你正在寻找用 css 做这样的事情

body
{
    cursor: crosshair;
}

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

body
{
    cursor: crosshair;
}
瀞厅☆埖开 2024-10-26 06:28:00

使主体成为一种光标类型

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

使锚点成为另一种类型

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

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;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文