<html> |
<head> |
<title> 鼠标指针形状效果大全 </title> |
<style type= "text/css" > |
h 1 { font-family :文鼎新艺体简; text-align : center } |
table{} |
.p 1 { font-size : 20pt ; cursor : auto } |
.p 2 { font-size : 20pt ; cursor : crosshair } |
.p 3 { font-size : 20pt ; cursor : default } |
.p 4 { font-size : 20pt ; cursor :hand} |
.p 5 { font-size : 20pt ; cursor : pointer } |
.p 6 { font-size : 20pt ; cursor : move } |
.p 7 { font-size : 20pt ; cursor : wait } |
.p 8 { font-size : 20pt ; cursor : e-resize } |
.p 9 { font-size : 20pt ; cursor : ne-resize } |
.p 10 { font-size : 20pt ; cursor : nw-resize } |
.p 11 { font-size : 20pt ; cursor : n-resize } |
.p 12 { font-size : 20pt ; cursor : s-resize } |
.p 13 { font-size : 20pt ; cursor : se-resize } |
.p 14 { font-size : 20pt ; cursor : sw-resize } |
.p 15 { font-size : 20pt ; cursor : w-resize } |
.p 16 { font-size : 20pt ; cursor : help } |
.p 17 { font-size : 20pt ; cursor :text} |
</style> |
</head> |
<body> |
<h 1 >鼠标移到相应的位置观看效果</h 1 > |
<table bordercolor= blue border= 1px width= 80% align= center > |
<tr> |
<td class= "p1" >自动</td> |
<td class= "p2" >精确定位</td> |
<td class= "p3" >默认指针</td> |
<td class= "p4" >手形hand</td> |
<td class= "p5" >手形point</td> |
</tr> |
<tr> |
<td class= "p6" >移动</td> |
<td class= "p7" >等待</td> |
<td class= "p8" >右方</td> |
<td class= "p9" >右上方</td> |
<td class= "p10" >左上方</td> |
</tr> |
<tr> |
<td class= "p11" >上方</td> |
<td class= "p12" >下方</td> |
<td class= "p15" >左方</td> |
<td class= "p14" >左下方</td> |
<td class= "p13" >右下方</td> |
</tr> |
<tr> |
<td class= "p16" >帮助</td> |
<td class= "p17" >文本“I”形</td> |
</tr> |
</body> |
</html> |