css3的cursor

1、cursor属性参考表

还有zoom-in/zoom-out

还有grab/grabbing

2、css

(1)前面的基本上就

.xx { 
    cursor: pointer;
}

(2)后面两个有兼容性问题

.xx { 
    cursor: -webkit-xx;
    cursor: -moz-xx;
    cursor: xx;
    cursor: url(../images/xx.cur);
}

 

posted @ 2017-08-03 15:25  kimingw  阅读(591)  评论(0编辑  收藏  举报