Ver Mensaje Individual
  #15 (permalink)  
Antiguo 05/11/2012, 10:57
furoya
(Desactivado)
 
Fecha de Ingreso: noviembre-2002
Ubicación: Ciudad Autónoma de Buenos Aires
Mensajes: 2.367
Antigüedad: 22 años, 1 mes
Puntos: 317
Respuesta: imagenes en movimiento

¿Vos también haciendo espam?



Cita:
Iniciado por emprear
Highlight @IsabelM, highlight por favor ...
Cita:
Iniciado por emprear
Te juro que fué de motus propio, copié y pegué y no funcionaba
Si, por supuesto, hiciste lo que cualquiera con un mínimo de criterio ¿A quién se le puede ocurrir otra cosa?
(Aunque yo prefiero las [code], esas highlight me traen mil problemas.)


Y para que alguien a quien no nombro, pero miro

< @> < @>


no diga después que vengo nada más que a destacar su mal uso de las herramientas del Foro; aprovecho a dejarles esto.

Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<title>ACERCA IMÁGENES.</title>
<script type="text/javascript">
var dist = 100;

function mueve() {
if(dist > 40) {
dist = dist - .25; 
document.getElementById("der").style.marginLeft = dist + "%";
document.getElementById("izq").style.marginRight = dist + "%";

setTimeout(mueve, 20);
}
}
onload = mueve;
</script>
<style type="text/css">
div {height: 128px; width: 100%; background-color: yellow; position: relative; }
#izq {display: inline; margin-right: 100%; position: absolute; right: 0px; }
#der {display: inline; margin-top: 24px; margin-left: 100%; position: absolute; left: 0; }
</style>

</head>
<body>
<div>
<img src="http://img197.imageshack.us/img197/2369/puzzleh.gif" id="der" />
<img src="http://img830.imageshack.us/img830/8478/puzzlev.gif" id="izq" />
</div>
</body>
</html>