Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom mouse pointer not working in IE11

I am trying to implement a custom cursor which is not working in IE11. This is working fine in chrome. Can someone help me to make it work in Internet Explorer 11

The style I am using is

cursor : url("../img/cursor-grab.gif"), url("../img/cursor-grab-cur.cur"), move

You can see the page here : http://us.accept.kia.eu/us/models/kia-sorento-2014/ There will be a car titles 360 View.

Thanks

like image 641
Nancy Avatar asked Jan 09 '15 10:01

Nancy


1 Answers

Per the MSDN reference page for the cursor property, IE supports only .cur and .ani files.

You can see this for yourself using one of the samples listed on the reference page. It's a bit wonky, though. You have to select a cursor and then apply it in order to verify the functionality.

Also, you should note that caniuse.com suggests that the original values of the CSS3 cursor property are more widely supported than newer values.

Hope this helps...

-- Lance

like image 121
Lance Leonard Avatar answered Sep 29 '22 15:09

Lance Leonard