这是我的代码:
$(document).mousemove(function(e){
var $width = ($(document).width())/255;
var $height = ($(document).height())/255;
var $pageX = e.pageX / $width;
var $pageY = e.pageY / $height;
$("body").css("background-color", "rgb("+$pageX+","+$pageY+","+$pageX+")");
});
这种工作,除了 mousemove 似乎每次移动时都不会刷新。它似乎滞后,我是否缺少某些设置?第 x 页和第 y 页乘以文档的相对大小为 255,从而使用整个频谱。谢谢。