我为任务使用了自定义光标属性,但它不能用于ie浏览器。我使用了以下代码段。
<html>
<head>
<title>Custom Cursor</title>
<style>
h1{
cursor: url(http://www.franco.it/Images/Lookf.png), auto;
}
</style>
</head>
<body>
<h1>Custom Cursor</h1>
</body>
</html>
适用于Chrome,Firefox和Safari - 除IE之外的所有内容。有些文章说我应该使用.cur
格式,但如何将图像转换为cur?我无法找到转换它的正确链接。
感谢。
答案 0 :(得分:5)
IE不支持游标的png格式。
您需要转换为“cur”格式。
css代码将如下所示
h1{cursor: url(http://myworkstudio.com/app/cursor1.cur), pointer}
您可以参考以下网址: