1
2
3
4
5
6
7
8
9
10
11
12
<style>
.cursor {
width: 50px;
height: 50px;
background-color: blue;
}
// 鼠标浮动到元素上时,会显示图片,如果图片不存在,将会使用auto
.cursor:hover {
cursor: url('custom-cursor.png'), auto;
}
</style>
<div class="cursor"></div>

最后更新: 2024年03月31日 03:05