在鼠标悬停时在光标下方添加图像

Add image underneath cursor on hover

我试图在您将鼠标悬停在另一张图片上时将一张图片附加到光标上(或者 div 就此而言..)。我想让图像随光标移动,当光标离开 div.

时图像再次消失

我尝试用 css cursor: url(images/my-cursor.png), auto; 更改光标。但这对我不起作用。

有没有办法让图像在悬停时粘在光标上?如果是这样,我将如何在我的代码中实现它?

希望有人能帮忙,谢谢!

试试这个:

cursor:url("images/my-cursor.png"),default;

不确定它是否适用于您的情况