我正在一个网站上工作,我需要一个自定义光标来代替我创建的默认光标,它正在检测鼠标移动,但是当我尝试将它放在超链接上时,什么也没有发生。这是我的代码
HTML
<div class='cursor'></div>
<div class='cursor'></div>
<h1>Custom cursor</h1>
<a href="#">A link </a>
CSS
* {
cursor: none;
}
.cursor {
position: absolute;
height: 10px;
width: 10px;
border-radius: 50%;
transform: translateX(-50%) translateY(-50%);
z-index: 99999;
}
.cursor:nth-child(1) {
background-color: #3A1C71;
z-index: 999999;
}
.cursor:nth-child(2) {
background-color: #FFAF7B;
}
JS
$(document)
.mousemove(function(e) {
$('.cursor')
.eq(0)
.css({
left: e.pageX,
top: e.pageY
});
setTimeout(function() {
$('.cursor')
.eq(1)
.css({
left: e.pageX,
top: e.pageY
});
}, 100);
})
我会感谢你的帮助
谢谢 :)