<html> <body>
<p>请把鼠标移动到单词上,可以看到鼠标指针发生变化:</p>
<span style="cursor:auto">Auto</span><br />
<span style="cursor:crosshair">Crosshair</span><br />
<span style="cursor:default">Default</span><br />
<span style="cursor:pointer">Pointer</span><br />
<span style="cursor:move">Move</span><br />
<span style="cursor:e-resize">e-resize</span><br />
<span style="cursor:ne-resize">ne-resize</span><br />
<span style="cursor:nw-resize">nw-resize</span><br />
<span style="cursor:n-resize">n-resize</span><br />
<span style="cursor:se-resize">se-resize</span><br />
<span style="cursor:sw-resize">sw-resize</span><br />
<span style="cursor:s-resize">s-resize</span><br />
<span style="cursor:w-resize">w-resize</span><br />
<span style="cursor:text">text</span><br />
<span style="cursor:wait">wait</span><br />
<span style="cursor:help">help</span>
</body> </html>
crosshair; |
十字准心 |
The cursor render as a crosshair |
cursor: pointer; |
手 |
The cursor render as a pointer (a hand) |
cursor: wait; |
等待/沙漏 |
The cursor indicates that the program is |
cursor: help; |
帮助 |
The cursor indicates that help is |
cursor: no-drop; |
无法释放 |
cursor: no-drop; |
cursor: text; |
文字/编辑 |
The cursor indicates text |
cursor: move; |
可移动对象 |
The cursor indicates something that |
cursor: n-resize; |
向上改变大小(North) |
The cursor indicates that an edge of a |
cursor: s-resize; |
向下改变大小(South) |
The cursor indicates that an edge of a |
cursor: e-resize; |
向右改变大小(East) |
The cursor indicates that an edge of a |
cursor: w-resize; |
向左改变大小(West) |
The cursor indicates that an edge of a |
cursor: ne-resize; |
向上右改变大小(North East) |
The cursor indicates that an edge of a |
cursor: nw-resize; |
向上左改变大小(North West) |
The cursor indicates that an edge of a |
cursor: se-resize; |
向下右改变大小(South East) |
The cursor indicates that an edge of a |
cursor: sw-resize; |
向下左改变大小(South West) |
The cursor indicates that an edge of a |
cursor: auto; |
自动 |
The browser sets a cursor |
cursor:not-allowed; |
禁止 |
cursor:not-allowed; |
cursor: progress; |
处理中 |
cursor: progress; |
cursor: default; |
系统默认 |
The default cursor (often an arrow) |
cursor: url(' # '); |
用户自定义(可用动画) |
The url of a custom cursor to be used. Note: Always |
参考链接:http://www.w3school.com.cn/cssref/pr_class_cursor.asp
http://www.jb51.net/css/23361.html