我目前在wordpress网站上使用插件(http://wordpress.org/extend/plugins/cursor-trail/)
但是我想宁愿使用另一种方法进行光标跟踪,这样看起来就像这个网站上的光标一样(除了meerkat):
答案 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);
});
});
`