抢光标窗镀铬(grab cursor in windows chrome)

2019-10-19 01:54发布

我得到两个光标在Windows的Chrome版本31.0.1650.57两个光标是抢和默认的箭头。 我用下面的CSS

CSS

div {
    width:200px;
    height:200px;
    background-color:maroon;
    border:1px solid #000;
    cursor:grab;
    cursor:-moz-grab;
    cursor:-webkit-grab;
}

小提琴- http://jsfiddle.net/jL9ft/

请让我知道什么是错在这里。 谢谢。

Answer 1:

二手光标从这里形象- http://www.google.com/intl/en_ALL/mapfiles/openhand.cur

div {
   cursor:url(../images/openhand.cur) 4 4, move
}


文章来源: grab cursor in windows chrome
标签: html css cursor