在css属性中,cursor是可以设置鼠标移入元素样式的,我们最常见的cursor:pointer;就是经典的小手样式。
但是,除了pointer,css中还有很多经典样式可以供我们选择
我们可以在有提示的编辑器(例如vscode),或者浏览器的控制台都可以去尝试
在cursor中使用svg图标资源,并且可以设置大小
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>鼠标样式测试文件</title>
</head>
<style>
body {
display: flex;
width: 1000px;
height: 800px;
}
.box {
width: 300px;
height: 300px;
background: pink;
/*核心代码*/
cursor: url('./瞄准镜.svg') 0 32, auto;
margin: auto;
}
</style>
<body>
<div class="box">
</div>
</body>
</html>
页面效果