gpt4 book ai didi

html - css - 改变光标的颜色

转载 作者:太空狗 更新时间:2023-10-29 14:02:59 24 4
gpt4 key购买 nike

我正在尝试将样式应用于光标。下面是代码

 <span style="cursor:help ; color:red; font-size:40px;">Help</span><br>

当我尝试 color:red 时,它将文本“帮助”更改为红色。如何让光标变红?

这是 fiddle - https://jsfiddle.net/user_123/aoubt7yv/

请帮忙。提前致谢。

最佳答案

游标并不像您预期​​的那样真正具有样式,至少不使用传统上以 DOM 元素为目标的属性。

最好的方法是将 cursor 属性设置为包含您首选光标的 URL,如下所示:

/* This will change your cursor to the image at your URL */
cursor: url('{your-red-cursor-url}'), auto;

示例

enter image description here

.red-cursor {
color:red;
font-size:40px;
cursor: url('http://www.spacebug.50webs.com/visible.gif'), auto;
}
<div class='red-cursor'>
Testing
</div>

关于html - css - 改变光标的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37327290/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com