0

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

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

    </body>
</html>
4

2 回答 2

0

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

于 2015-11-16T20:03:42.343 回答
0

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

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

于 2015-11-16T21:22:27.623 回答