Hola que tal ahora si entiendo un poco mas a ver si te sirve esto
Código HTML:
Ver original<!DOCTYPE html>
<script type="text/javascript"> var misImagenes = new Array(3);
for (i=0; i<misImagenes.length;i++){
misImagenes[i]= "img/0"+i+".jpg";
}
var contador = 0;
window.onload = function(){
cambiarImagen();
}
cambiarImagen = function(){
var imgfija = document.getElementById('foto').src="img/02.jpg";
if(contador == misImagenes.length){
contador = 0;
}
var imgcambia = document.getElementById('fotx').src = misImagenes[contador];
contador++;
if(imgfija==imgcambia){
alert('las imagenes son iguales');
return;
}
setTimeout(cambiarImagen, 3000);
}
<h1> Compara una imagen con otras cambiando cada 3 segundos
</h1> <!-- Esta es la que busco -->
<img id="foto" style="width:240px; heigth:120px;" src=""/> <!-- Esta es la lista de imagenes a comparar -->
<img id="fotx" style="width:240px; heigth:120px;" src=""/>