个人感觉,var j = i;那里,可以写成i++;然后后面直接调用opacity:1/i,left:fixOffsetLeft+i*gap-rw,会更简洁易懂一点
2016-09-26
zIndex的设置有点太绕了,既然是怕直接设置会产生并发效果,直接用animate的callback就可以解决。
self.animate({
zIndex:zIndex,
},1,function(){
self.animate({
width:width,
height:height,
opacity:opacity,
left:left,
top:top
})
})
self.animate({
zIndex:zIndex,
},1,function(){
self.animate({
width:width,
height:height,
opacity:opacity,
left:left,
top:top
})
})
2016-09-26