$(document).ready(function(){
var timer=null,indea=0;
function carouselAvator(){
// 鼠标划过定时器
$('#avatar').mouseout(function(){
timer=setInterval(function(){
indea++;
if (indea>1) {
indea=0;
}
console.log(indea);
changeImg();
},3000);
})
// $('#avatar').mouseover(function(){
// clearInterval(time,)
// })
$('#avatar').mouseout();
}
function changeImg(){
if (indea=0) {
$('#avatar .man').addClass('activer');
}
else{
$('#avatar .man').removeClass('activer');
}
}
carouselAvator();
})
蓝冰记忆
相关分类