光标类型 CSS
把你的光标放到相应文字上查看效果 要注意光标的实际效果依赖于用户的系统设置,与你在这里看到的效果并不一定一致。
鼠标手势_MOUSE <SPAN style="CURSOR: crosshair">十字准心</SPAN>
cursor: crosshair;
 
鼠标手势_JS_02
 
<SPAN style="CURSOR: pointer">手</SPAN>
cursor: pointer;
cursor: hand;

写两个是为了照顾IE5,它只认hand。
鼠标手势_休闲_03
<SPAN style="CURSOR: wait">等待/沙漏</SPAN>
 
cursor: wait;
鼠标手势_职场_04
<SPAN style="CURSOR: help">帮助</SPAN>
 
cursor: help;
鼠标手势_MOUSE_05
<SPAN style="CURSOR: no-drop">无法释放</SPAN>
 
cursor: no-drop;
鼠标手势_MOUSE_06
<SPAN style="CURSOR: text">文字/编辑</SPAN>
 
cursor: text;
鼠标手势_休闲_07
<SPAN style="CURSOR: move">可移动对象</SPAN>
 
cursor: move;
鼠标手势_MOUSE_08
<SPAN style="CURSOR: n-resize">向上改变大小(North) </SPAN>
 
cursor: n-resize;
鼠标手势_休闲_09
<SPAN style="CURSOR: s-resize">向下改变大小(South) </SPAN>
 
cursor: s-resize;
鼠标手势_JS_10
<SPAN style="CURSOR: e-resize">向右改变大小(East) </SPAN>
 
cursor: e-resize;
鼠标手势_JS_11
<SPAN style="CURSOR: w-resize">向左改变大小(West) </SPAN>
 
cursor: w-resize;
鼠标手势_MOUSE_12
<SPAN style="CURSOR: ne-resize">向上右改变大小(North East) </SPAN>
 
cursor: ne-resize;
鼠标手势_休闲_13
<SPAN style="CURSOR: nw-resize">向上左改变大小(North West) </SPAN>
 
cursor: nw-resize;
鼠标手势_MOUSE_14
<SPAN style="CURSOR: se-resize">向下右改变大小(South East)</SPAN>
 
cursor: se-resize;
鼠标手势_休闲_15
<SPAN style="CURSOR: sw-resize">向下左改变大小(South West) </SPAN>
 
cursor: sw-resize;
鼠标手势_休闲_16
<SPAN style="CURSOR: auto">自动</SPAN>
 
cursor: auto;
鼠标手势_休闲_17
<SPAN style="CURSOR: not-allowed">禁止</SPAN>
 
cursor:not-allowed;
鼠标手势_休闲_18
<SPAN style="CURSOR: progress">处理中</SPAN>
 
cursor: progress;
鼠标手势_JS_19
<SPAN style="CURSOR: default">系统默认</SPAN>
 
cursor: default;
鼠标手势_JS_20 用户自定义 cursor: url(' # ');
  # = 光标文件地址   (注意文件格式必须为:.cur 或 .ani)。