Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/04/2009, 08:38
Usa_Firefox
(Desactivado)
 
Fecha de Ingreso: abril-2009
Ubicación: En mi casa
Mensajes: 191
Antigüedad: 15 años, 8 meses
Puntos: 0
Encontré esto ['LO PONGO PARA QUE LE SIRVA A ALGUIEN: No es para alcanzar el mínimo de mensajes ni nada ehh XD']

Código PHP:
<HTML>
<
HEAD>

<
TITLE>Visor de imagenes</TITLE>


</
HEAD>

<
BODY bgcolor="white">

<
table border="0" cellpadding="0">
  <
tr>
    <
td width="100%"><img src="x1.jpg" width="240" height="160" name="photoslider"></td>
  </
tr>
  <
tr>
    <
td width="100%"><form method="POST" name="rotater">
<
script type="text/javascript">
var 
photos=new Array()
var 
which=0

  
////cambia las variables necesarias
photos[0]="x1.jpg"
photos[1]="x2.jpg"
photos[2]="x3.jpg"
photos[3]="x4.jpg"
photos[4]="x5.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><!--webbot
      bot="HTMLMarkup" endspan --><input type="button" value="<<Back" name="B2"
      onClick="backward()"> <input type="button" value="Next>>" name="B1"
      onClick="forward()"><br>
      </center></div>
    </form>
    </td>
  </tr>
</table>


</body>
</html> 
Lo saqué de este foro... pero lo he pegado aquí, y luego edito el mensaje con un script que pueda mostrar las imgs de una base de datos.


Solo tenes q modificar las varibles:
photos[0]="x1.jpg"
photos[1]="x2.jpg"
photos[2]="x3.jpg"
photos[3]="x4.jpg"
photos[4]="x5.jpg

x1.jpg, x2.jpg, x3.jpg y etc, por las imagenes q necesites.

Me surgió la duda 1:

¿Cómo hago para cambiar esta línea?

Código HTML:
document.images.photoslider.src=photos[which]
Es decir, que me aparezca algo así

document.images.photoslider.src=../carpetaimgs/photos[which]

Ya que no sé mostrar el texto en javascript... (traslado de tema porfa)

Saludos

Última edición por GatorV; 14/04/2009 a las 09:59