css
Cursor Types
光标类型 把你的光标放到相应文字上查看效果要注意光标的实际效果依赖于用户的系统设置,与你在这里看到的效果并不一定一致。
cursor: crosshair;

cursor: pointer;
cursor: hand;
写两个是为了照顾IE5,它只认hand。

cursor: wait;

cursor: help;

cursor: no-drop;

cursor: text;

cursor: move;

cursor: n-resize;

cursor: s-resize;

cursor: e-resize;

cursor: w-resize;

cursor: ne-resize;

cursor: nw-resize;

cursor: se-resize;

cursor: sw-resize;

cursor: auto;

cursor:not-allowed;

cursor: progress;

cursor: default;

cursor: url(' # ');
# = 光标文件地址 (注意文件格式必须为:.cur 或 .ani)。