02/02/2007, 12:04
|
| | Fecha de Ingreso: febrero-2007
Mensajes: 2
Antigüedad: 17 años, 11 meses Puntos: 0 | |
Re: Varios Slides en una sola página Vamos, nadie de los que me leen me van a ayudar?
Se los pido por favor.
Acá mando otro que puede ser más sencillo de poner 2 slides juntos:
<table border="0" cellpadding="0">
<caption><strong>Air Show Photos</strong></caption>
<tr>
<td width="100%"><img src="a1.jpg" width="300" height="240" name="photoslider"></td>
</tr>
<tr>
<td width="100%"><form method="POST" name="rotater">
<div align="center"><center><p><script language="JavaScript1.1">
var photos=new Array(1)
var which=0
/*Change the below variables to reference your own images. You may have as many images in the slider as you wish*/
photos[0]="a1.jpg"
photos[1]="a2.jpg"
photos[2]="a3.jpg"
photos[3]="a4.jpg"
photos[4]="a5.jpg"
function backward(){
if (which>0){
window.status=''
which--
document.images.photoslider.src=photos[which]
}
}
function forward(){
if (which<photos.length-1){
which++
document.images.photoslider.src=photos[which]
}
else window.status='End of gallery'
}
</script><input type="button" value="<<Back" name="B2"
onClick="backward()"> <input type="button" value="Next>>" name="B1"
onClick="forward()"><br>
<a href="#" onClick="which=1;backward();return false"><small>Start Over</small></a></p>
</center></div>
</form>
</td>
</tr>
</table> |