当前位置: 首页 > 网络学院 > 网页制作基础教程 > WEB设计综合 > 指针样式
To change the cursor on an individual link, copy the code below, and change LINK TEXT to the text you want to use for your link, and change YOUR URL to the url you are linking to.
如果你希望为每一个单独的链接改变指针,你可以复制下面的代码,并改变“LINK TEXT”,将它改成你喜欢的文本内容,并改变相对应的链接地址:
<a href="YOUR URL" style="cursor:CURSOR TYPE">LINK TEXT</a> |
Now replace CURSOR TYPE with one of the cursor types below:
接下来,你可以使用下面这些属性来替换“CURSOR TYPE”属性,从而改变指针的样式:
crosshair 精确定位“+”字
wait 等待(沙漏形状)
help 帮助(带问号的指针)
text 文本“I”形
default 默认指针
n-resize 箭头朝上
s-resize 箭头朝下
w-resize 箭头朝左
e-resize 箭头朝右
ne-resize 箭头朝右上
nw-resize 箭头朝左上
se-resize 箭头朝右下
sw-resize 箭头朝左下
move 移动
hand 手形
Or, you could change the cursor type in the link section of your CSS:
或者,你可以在CSS的链接部分更改你的指针类型:
A:hover{COLOR: #FFFFFF; TEXT-DECORATION: none; cursor:CURSOR TYPE;} |