鼠标光标 - 用于wordpress网站

时间:2012-09-09 14:28:17

标签: javascript jquery wordpress plugins cursor

我目前在wordpress网站上使用插件(http://wordpress.org/extend/plugins/cursor-trail/

但是我想宁愿使用另一种方法进行光标跟踪,这样看起来就像这个网站上的光标一样(除了meerkat):

1 个答案:

答案 0 :(得分:1)

如果你想实现这个,你可以像Tom建议的那样使用jQuery。

这个代码是:

`

 $(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);   
});
});

`