1、cursor属性参考表

css3的cursor

还有zoom-in/zoom-out

css3的cursor

还有grab/grabbing

css3的cursor

2、css

(1)前面的基本上就

.xx { 
    cursor: pointer;
}

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

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

 

相关文章:

  • 2022-12-23
  • 2022-03-02
  • 2022-12-23
  • 2021-08-29
  • 2021-09-28
  • 2021-06-14
  • 2021-11-05
  • 2022-12-23
猜你喜欢
  • 2021-05-28
  • 2021-05-01
  • 2022-12-23
  • 2022-01-02
  • 2021-06-18
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案