html实现鼠标悬停变成手型实现方式
2021-07-11 13:05
标签:style cal cursor pointer help 16px ref html :hover 或者 css写法: cursor其他取值 html实现鼠标悬停变成手型实现方式 标签:style cal cursor pointer help 16px ref html :hover 原文地址:http://www.cnblogs.com/yanglang/p/7086456.html1、采用a标签实现的方式
2、采用CSS实现的方式
1 // 变手形
2 oElement.style.cursor = "pointer";
3
4 // 恢复原样
5 oElement.style.cursor = "default";
1
"cursor:hand">
1
1 auto :标准光标
2 default :标准箭头
3 hand :手形光标
4 wait :等待光标
5 text :I形光标
6 vertical-text :水平I形光标
7 no-drop :不可拖动光标
8 not-allowed :无效光标
9 help :?帮助光标
10 all-scroll :三角方向标
11 move :移动标
12 crosshair :十字标
13 e-resize
14 n-resize
15 nw-resize
16 w-resize
17 s-resize
18 se-resize
19 sw-resize
上一篇:JS 子窗口向父窗口传值
文章标题:html实现鼠标悬停变成手型实现方式
文章链接:http://soscw.com/index.php/essay/103713.html