tengo el siguiente problema... tengo este script q me hace rotar imagenes...
************************************************** *******
Código:
************************************************** *******<script> var slideShowSpeed = 4000 var crossFadeDuration = 3 var Pic = new Array() Pic[0] = './images/thumbs/firefox/1.jpg' Pic[1] = './images/thumbs/firefox/1_2.jpg' ... Pic[36] = './images/thumbs/firefox/christmas.jpg' Pic[37] = './images/thumbs/firefox/christmas_2.jpg' var t var j = 0 var p = Pic.length var preLoad = new Array() for (i = 0; i < p; i++){ preLoad[i] = new Image() preLoad[i].src = Pic[i] } function runSlideShow(){ if (document.all){ document.images.SlideShow.style.filter="blendTrans(duration=2)" document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)" document.images.SlideShow.filters.blendTrans.Apply() } document.images.SlideShow.src = preLoad[j+2].src if (document.all){ document.images.SlideShow.filters.blendTrans.Play() } //Cuadro_2 if (document.all){ document.images.SlideShow2.style.filter="blendTrans(duration=2)" document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)" document.images.SlideShow2.filters.blendTrans.Apply() } if(j+1>(p-1)) document.images.SlideShow2.src = preLoad[0].src else document.images.SlideShow2.src = preLoad[j+1].src if (document.all){ document.images.SlideShow2.filters.blendTrans.Play() } j = j + 2 if (j > (p-1)) j=0 t = setTimeout('runSlideShow()', slideShowSpeed) } </script> <body onload="runSlideShow()"> ... ... <table border="0" width=960> <tr> <td colspan="77"></td> <td colspan="0" align="left"><img src="" name='SlideShow'></td> <td colspan="0" align="right"><img src="" name='SlideShow2'></td> </tr>
pues bien, ese script hace q roten las imagenes, ahora lo q quiero hacer es q al hacer click en la q aparezca en pantalla se me abra en una nueva ventana con esa imagen a una resolucion mayor.
lo q no se es como "implementar" el otro script!! no se como relacionarlos.. no se na vamos jejej
a ver si alguien me puede echar una mano! el script q abre imagenes no lo pongo ya q me da igual utilizar ese u otro metodo..
muchas gracias a todos y saludos!