Custom CSS cursor click point

后端 未结 4 456
借酒劲吻你
借酒劲吻你 2020-12-09 10:59

How can I give a custom click point to cursors created by cursor: url(theCursorUrl);? e.g. you\'re using a hand(grab) image for the cursor. But you want that t

4条回答
  •  孤城傲影
    2020-12-09 11:01

    CSS 3 hot spot positioning but this is not supported by IE https://developer.mozilla.org/en/Using_URL_values_for_the_cursor_property

    cursor: url(cursor.gif) 2 2, pointer;
    property: url x-coordinate y-coordinate, fallback image;
    

提交回复
热议问题