在更改默认光标后更改指针

时间:2014-07-08 04:10:08

标签: javascript html css

我正在创建一个程式化的页面,并且已经更改了默认光标,但它又回到了标准"指针"当你将鼠标悬停在链接上时。我想像使用默认光标一样更改标准指针。我尝试了一些我发现的javascript,但它似乎没有用。

    <!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" type="text/css" href="../css/basic.css">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<script>
    var elms = document.getElementsByTagName("*");
    var n = elms.length;
    for(var i = 0; i < n; i ++) {
        if(window.getComputedStyle(elms[i]).cursor == "pointer") {
            elms[i].style.cursor = "url(../img/cursor.png)";
        }
     }
</script>

</head>
<body>
      <a>
      <a>
</body>  
</html>

这是CSS游标

    html{
    min-width: 100%;
    min-height:100%;
    cursor: url(../img/cursor.png),auto;
}
body{
    background-color: black;
    cursor: url(../img/cursor.png),auto;
  }

1 个答案:

答案 0 :(得分:0)

试试这个:

a:hover, a:active, a:visited {
    cursor: url(../img/cursor.png), auto;
}

Demo

P.S:在演示中使用随机图像。