CSS样式 鼠标状态

  1. /*正常鼠标 */  
  2. cursor:auto;   
  3. /*十字鼠标 */  
  4. cursor:crosshair;  
  5. /*默认鼠标 */  
  6. cursor:default;  
  7. /*手*/  
  8. cursor:pointer;  
  9. /*移动鼠标 */  
  10. cursor:move;   
  11. /*改变大小鼠标 */  
  12. cursor:e-resize,ne-resize,nw-resize,n-resize,se-resize,sw-resize,s-resize,w-resize;  
  13. /*文字鼠标 */  
  14. cursor:text;   
  15. /*等待鼠标 */  
  16. cursor:wait;   
  17. /*求助鼠标 */  
  18. cursor:help;