我使用 HTML5 画布编写了一个简单的图像滑块。在每个图像到达屏幕末端后,它会从导致随机图像闪烁的阵列中移除。我怎样才能解决这个问题。
JSFiddle:http: //jsfiddle.net/mbe5R/2/
this.animate = function() {
this.y += this.speed;
this.x = this.xrandom * albumWall.canvas.width - 250;
if(this.y > innerHeight) {
albumWall.fbImages.splice(albumWall.fbImages.indexOf(this),1);
if(albumWall.count==(albumWall.imgArr.length-1)) {
albumWall.count=-1;
}else{
albumWall.count++;
var img = albumWall.imgArr[albumWall.count];
console.log(img)
albumWall.fbImages.push(new self.fbImage(albumWall.count, img, img.width, img.height));
}
}
};
当图像到达窗口末尾时,我将其删除
albumWall.fbImages.splice(albumWall.fbImages.indexOf(this),1);
我认为这是导致屏幕随机闪烁的问题。