1

Is it possible with CSS to tell the browser that with this new cursor that the click point is not actually at 0x0y but actually 3x-20y.

Looking though all of the options, I did not see one to do such a thing. http://www.w3schools.com/cssref/pr_class_cursor.asp

This would be helpful to be used in conjunction with either

Javascript library to Change cursor color

OR

cursor: url();

General Grievance
  • 4,555
  • 31
  • 31
  • 45
Case
  • 4,244
  • 5
  • 35
  • 53

1 Answers1

2

css3 supports this... cursor: url(curser.cur) 3 -20, auto; The .cur format also embeds the hotspot...

This has already been covered in length here: link

Community
  • 1
  • 1
TinMonkey
  • 1,832
  • 1
  • 10
  • 7
  • A shame, looks like that won't work with being recolored then. I will have to modify the Canvas to trick it. – Case Oct 28 '15 at 22:09