我想创建一个自定义游标,我有一个css类,这正是我想要放在我的光标上,但我找不到实际将该类放到我的光标上的方法,我不确定这是不是一种可能性,任何人都知道如何做到这一点?
这是我的css课程。
.myicon{
width: 0;
height: 0;
border-top: 4px solid transparent;
border-left: 8px solid red;
border-bottom: 4px solid transparent;
right:100%;
top:-5%;
position: absolute;
clear: both;
content:'';
}
无论如何我可以改变我的光标以获得这个课程吗?
答案 0 :(得分:2)
你可以传递png图像的网址
.module {
cursor: url('path-to-image.png'), auto;
}