将css类附加到我的光标上

时间:2017-06-13 07:22:24

标签: css

我想创建一个自定义游标,我有一个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:'';
}

无论如何我可以改变我的光标以获得这个课程吗?

1 个答案:

答案 0 :(得分:2)

你可以传递png图像的网址

.module {
  cursor: url('path-to-image.png'), auto;   
}