WordPress网站的游标编码

时间:2012-10-01 17:53:19

标签: javascript jquery wordpress cursor

我有以下代码,我想在我的Wordpress网站中实现,以便有一个自定义鼠标指针。

我会在哪里插入此代码?进入index.php文件本身?或者单独的文本文件?

谢谢

$(document).ready(function() { 

    $(document).mousemove(function(e) {

            //create img elements having pointer.png in their src 
            pointer = $('<img>').attr({'src':'pointer.png'});

            //and append them to document
            $(document.body).append(pointer); 

            //show them at mouse position & fade out slowly
            pointer.css({
                    'position':'absolute',
                    top: e.pageY +2 ,    //offsets
                    left: e.pageX +2   //offsets
                }).fadeOut(1500);   
});
});

2 个答案:

答案 0 :(得分:3)

CSS中有cursor规则。如果您可以在某处修改全局CSS,只需将cursor: url(/path/to/cursor.png);添加到htmlbody

答案 1 :(得分:1)

通常情况下,您会将此页面<head><script>HERE</script></head>放在您想要的页面上。确保首先导入了jquery。