背景颜色应该在悬停时动画,在不悬停时停止。为什么它不起作用的任何线索? JSLint有效。
var pixColors = {
init: function() {
function pixelColors(){
var color = '#'+(Math.random()*0xCCCCCC<<0).toString(16);
$('.colorAnim').animate({
backgroundColor: color
}, 1000, pixelColors);
}
$('.colorAnim').hover(
function(){
pixelColors();
},
function() {
$('.colorAnim').stop(true);
});
}
}
$(document).ready(function() {
pixColors.init();
});