HTML5 - 动画光标

时间:2015-11-16 19:58:56

标签: html html5 cursor custom-cursor

我的HTML文档需要一个链接到动画gif文件的自定义光标。 我的光标属性有什么问题?

<!doctype html> <html>
    <head>
        <style type="text/css">
            body{
                cursor: url('images/hero.gif'), auto;
            }
        </style>
    </head>
    <body>

    </body>
</html>

2 个答案:

答案 0 :(得分:0)

https://developer.mozilla.org/en-US/docs/Web/CSS/cursor;我相信相关方面是“动画:不”。

答案 1 :(得分:0)

动画PNG或GIF将创建动画光标。这是渲染引擎限制。

请参阅:https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_User_Interface/Using_URL_values_for_the_cursor_property

相关问题