20/02/2008, 18:00
|
| | | Fecha de Ingreso: junio-2007 Ubicación: Caracas
Mensajes: 96
Antigüedad: 17 años, 5 meses Puntos: 0 | |
Re: ¿gif de carga mientras se sube una foto? hola caricatos,
mucho antes de escribir aqui ya había visto ese consejo tuyo pero no sé porq no me funciona, creo q no se adaptarlo a mi form
cambié la orden onload por onclic no se si dedo hacerlo. te muestro el form para que veas formulario
<form method="post" enctype="multipart/form-data" action="enviar.php">
<table width="100%" style="margin: auto;">
<tr>
<td style="width: 27%;">
<p align="center">
<input type="file" name="archivo" size="26" style="font-size: 8pt; " />
<input type="submit" value="Cargar archivo" style="font-size: 7pt; " /></td>
</tr>
</table>
</form>
en base a tu ejemplo, ésto lo coloque dentro del <head>
<script>
function tag(id) {return document.getElementById(id);}
function imagen(cual) {
tag("cargando").style.visibility = "visible";
tag("foto").src = cual;
}
</script>
pero como lo llamo para que se active al hacer clic en Cargar archivo?
en que momento utilizo este pedazo que tu colocaste en tu ejemplo?
<span style="position: relative; background-color: gray; padding: 0"
><img src="../fotos/flor.jpg" width="640" height="480" style="pargin: 0" onload="this.nextSibling.style.visibility = 'hidden'"
/><span id="cargando" style="position: absolute; background: white url(../dibujos/indicator.gif) no-repeat center center; top: 0; left: 0; width: 640px; height: 480px" />
</span>
gracias de antemano por responderme, ojala pudas asesorarme |