鼠标样式的属性记录

记录鼠标样式

使用style样式控制

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
    <span style="cursor:pointer">手形</span> 
  <span style="cursor:crosshair">十字</span> 
  <span style="cursor:text" >文本光标</span>  
  <span style="cursor:e-resize" >左右箭头</span> 
  <span style="cursor:s-resize" >上下箭头</span>
</body>
</html>
原文地址:https://www.cnblogs.com/zyanrong/p/11791415.html