我正在做植物生长模拟器,教孩子们种植植物。有关于更改指针的线程,例如: JavaScript how to change mouse cursor to an image? How to change the mouse pointer to an Image when clicked on it in c#
然而,担忧是不同的。我想要做的是让鼠标指针本身更改为单击的图像,因此它将提供如下内容:
我不知道是否应该尝试更改点击事件上的指针或使指针不可见并将所选图像的副本附加到其中,以便我对此有所帮助。
答案 0 :(得分:0)
,只需:
document.body.style.cursor = "url([url]), pointer"
例如:
document.body.style.cursor = "url(http://bringerp.free.fr/Files/RotMG/cursor.gif), pointer"
要替换为默认光标,请将光标样式更改为空:
document.body.style.cursor = ""
答案 1 :(得分:0)
要根据需要更改鼠标光标,您必须向相关元素添加单击侦听器。例如:
const src = 'https://www.gravatar.com/avatar/2f2eaccac43433e0bdd0b9f795286423?s=32&d=identicon&r=PG&f=1';
const docStyle = document.body.style;
document.querySelector('img').addEventListener('click', () => {
if (!docStyle.cursor) docStyle.cursor = `url('${src}'), default`;
else docStyle.cursor = null;
});

div {
height: 300px;
background-color: green;
}

<div>
<img src="https://www.gravatar.com/avatar/2f2eaccac43433e0bdd0b9f795286423?s=32&d=identicon&r=PG&f=1">
</div>
&#13;