Do you have a .cur file for your own custom cursor?
You can have a style attribute inside your Canvas object that indicates how the cursor should be displayed. This can be done using a custom css cursor
style="cursor: url(mycursor.cur);"
- IE is expecting a .cur file.
- Firefox requires a second, non-URL value; as cursor: url (pix / cursor_ppk.gif), auto.
- Image size should be 32x32 pixels or lower. This is (Windows OS) OS limitation; not a browser limitation.
Adapted from CSS2 - cursor styles , it is compatible in IE5.5 +, FF, Safari and Chrome. Opera and Konqueror 3.5.7 are not compatible.
source share