cursor

cursor属性定义鼠标指针放在一个元素边界范围内时所用的光标的形状

cursor中我们最常用到的属性是defaultpointer

defaultcursor属性的默认值,展现的是一个光标效果。

pointer光标呈现为指示链接的指针(小手的效果)

cursor_第1张图片

 

 更多效果的实现代码

1 <body>
 2 <p>请把鼠标移动到单词上,可以看到鼠标指针发生变化:p>
 3 <span style="cursor:auto">autospan><br>
 4 <span style="cursor:crosshair">crosshairspan><br>
 5 <span style="cursor:default">defaultspan><br>
 6 <span style="cursor:e-resize">e-resizespan><br>
 7 <span style="cursor:help">helpspan><br>
 8 <span style="cursor:move">movespan><br>
 9 <span style="cursor:n-resize">n-resizespan><br>
10 <span style="cursor:ne-resize">ne-resizespan><br>
11 <span style="cursor:nw-resize">nw-resizespan><br>
12 <span style="cursor:pointer">pointerspan><br>
13 <span style="cursor:progress">progressspan><br>
14 <span style="cursor:s-resize">s-resizespan><br>
15 <span style="cursor:se-resize">se-resizespan><br>
16 <span style="cursor:sw-resize">sw-resizespan><br>
17 <span style="cursor:text">textspan><br>
18 <span style="cursor:w-resize">w-resizespan><br>
19 <span style="cursor:wait">waitspan><br>
20 body>
21 html>

 

你可能感兴趣的:(cursor)