抓住windows chrome中的光标

时间:2013-12-02 10:17:31

标签: html css cursor

我在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/

请告诉我这里有什么问题。感谢。

1 个答案:

答案 0 :(得分:2)

将光标用作此处的图像 - http://www.google.com/intl/en_ALL/mapfiles/openhand.cur

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