/* 将鼠标设置为箭头 */ cursor: pointer; /* 将鼠标设置为手型 */ cursor: hand; /* 将鼠标设置为十字型 */ cursor: crosshair; /* 将鼠标设置为等待标记 */ cursor: wait; /* 将鼠标设置为禁止标记 */ cursor: not-allowed; /* 自定义鼠标样式 */ cursor: url('custom.cur'), auto;
这里给几个常见的示例:
将鼠标设置为箭头:
cursor: pointer;
将鼠标设置为手型:
cursor: hand;
将鼠标设置为十字型:
cursor: crosshair;
将鼠标设置为等待标记:
cursor: wait;
将鼠标设置为禁止标记:
cursor: not-allowed;
自定义鼠标样式:
cursor: url('custom.cur'), auto;
其中,url()中的参数代表自定义鼠标样式的图片路径,auto代表当指针不在自定义图片区域时使用系统默认鼠标样式。
以上就是CSS二级如何设置鼠标的方法,大家可以根据需要自己调整鼠标样式。