1. div{ cursor:default }默认正常鼠标指针
2. div{ cursor:hand }和div{ cursor:text } 文本选择效果
3. div{ cursor:move } 移动选择效果
4. div{ cursor:pointer } 手指形状 链接选择效果
5. div{ cursor:url(url图片地址) }设置对象为图片
默认鼠标样式
#box_test{
width: 300px;
height: 300px;
background-color: aqua;
}
<div id="box_test"></div>
手指形状样式
#box_test{
width: 300px;
height: 300px;
background-color: aqua;
cursor:pointer;
}
移动选择样式
#box_test{
width: 300px;
height: 300px;
background-color: aqua;
cursor:move;
}