Custom mouse cursor doesn't work in IE11

I am trying to implement a custom cursor that does not work in IE11. This works great in chrome. Can someone help me make it work in Internet Explorer 11

The style I use

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 360 ​​View car names.

thanks

+6
source share
1 answer

On the MSDN links page for cursor properties, IE only supports .cur and .ani files.

You can see it for yourself using one of the samples listed on the help page. However, this is a little disgusting. You must select the cursor and then apply it to test the functionality.

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

Hope this helps ...

- Lance

+4
source

Source: https://habr.com/ru/post/980754/


All Articles