Ver Mensaje Individual
  #11 (permalink)  
Antiguo 06/12/2001, 09:30
matrex
 
Fecha de Ingreso: octubre-2001
Ubicación: caracas
Mensajes: 554
Antigüedad: 22 años, 5 meses
Puntos: 0
Re: Hagamos un TUTORIAL aqui mismo!!!!!

¿como hacer que tiemble el explorador?

Para hacer el efecto de que la ventana del navegador tiemble, tienes que inserta el siguiente código JavaScript en el documento html, que contiene la película flash.


<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function shake(n) {
if (parent.moveBy) {
for (i = 10; i > 0; i--) {
for (j = n; j > 0; j--) {
parent.moveBy(0,i);
parent.moveBy(i,0);
parent.moveBy(0,-i);
parent.moveBy(-i,0);
}
}
}
}
// End -->


-en el botón que ejecutara la acción debes incluir

javascript:shake(2)