Página de inicio tu ip es el siguiente
 
inicio
Syllable: Sistema operativo liviano y gratuito
Windows XP Falcor Edition y windows fenix
Contacta con nosotros
foro
Libro de visita
chistes
te quiero en todos los idiomas
te amo en todos los idiomas
pensamientos
poemas
reflexiones
Refranes
frases
TODO SOBRE TU FECHA DE NACIMIENTO
30 trucos para Microsoft Excel
curso de informatica
curso de ofirmatica
35 Trucos para Microsoft Word
que es webmaster?
15 CONSEJOS PARA CREAR UN BOLETÍN ELECTRÓNICO
Zona PHP
TABLA DE COLORES
nuevos codigos
=> Metatags
=> agregale una imagen a tu cursor
=> Desplegable de selección de sonidos
=> Ventana se desplaza con mensaje
=> Cambia de colores el texto
=> Mensaje de al entrar y salir de página
=> Rayos en la página
=> WebCam en tu página Web.
=> Mensaje al entrar. (marcos lopez)
=> Ventana nueva al entrar y en segundo plano
=> Texto Rotativo
=> Ver siempre la misma URL
=> Seleccionar un e-mail de la lista.
=> Mensaje sobre texto al transcurrir segundos
=> Puntos volando sobre el puntero del ratón
=> Rastro de bengala en el puntero del ratón
=> Puntero cambia según dirección del ratón
=> imágenes desintegran y cambian a los segundos estipulados
=> Botones de navegación
=> Celda cambia de color al pasar el puntero sobre ella.
=> Reloj sigue al cursor
texto
Gifs Animados
fondos de pantalla para tu web
efectos
letras animadas
signos del zodiaco animados
utilidades
formularios
un chat en tu web
alertas
reproductor y audio para tu web
crea Tu correo personalizado
contadores para tu web
Analiza un archivo online con varios antivirus
PONER UN MENÚ DESPLEGABLE EN TU PÁGINA
traduci tu web en varios idiomas
Haz que tus usuarios incluyan tu página entre sus favoritos
crea un "terremoto" en tu web
CONSIGUE QUE TU PÁGINA APAREZCA COMPLETA AL IMPRIMIRSE
CÓMO CONSEGUIR QUE TU PÁGINA SE REFRESQUE AUTOMÁTICAMENTE
Mas trucos para tus paginas ( Efectos de texto)
Rotador de imagenes
GOOGLE MAPS EN TU WEB
calculadoras
iconos
Panel de mensajes instantáneos en tu web
Buscadores múltiples 1
Buscadores múltiples 2
buscador blogbar para tu web
publica tu web en google
publica tu web en msn
publica tu web en yahoo
trucos para msn
Windows Live Messenger en tu web
accesorios para moviles.celular
programas de mensajeria gratis
antivirus gratis
antiespias gratis
compresores gratis
cortafuegos gratis
programas p2p gratis
programas de grabacion gratis
Imagen, Diseño y Fotografía gratis
el video mas visto en youtube
Drivers
CD AIO para crear cds/dvds autoejecutables
Windows UE 7 (Unattended Edition)
Windows uE 9.5 Final Edition Español
 

Rastro de bengala en el puntero del ratón

.com/pagead/show_ads.js">

Rastro de Bengala en Puntero





Este código crea un rastro de estrellas o bengala cuando mueves el ratón.

 

 

Ejemplo

 

Esta es la imagen, la puedes guardar con clic con el botón derecho

del ratón encima de ella y seleccionando "Guardar imagen como"


Copia y Pega el código dentro de las etiquetas <head> y </head> en vista HTML





<script language="Javascript">
<!--
/* Written by:
 * Terry Yuen.
 * Works inspired by Tendertron cartoons.
 * "This one's for the kids!"
 */
var ITEM_COUNT = 6;     //number of flakes visible per time
var ITEM_W = 20;        //width of a single flake
var ITEM_H = 20;        //height of a single flake
var ITEM_SRC = "bengala.gif";
var ITEM_STAGES = 4;    //number of life stages for a single flake. (i.e., number of states on the "star.gif")
var ITEM_TRAVEL = 20;   //number of times to move a flake before disappearing (Note: PIXEL MOVED = ITEM_TRAVEL * ITEM_INCREMENT)
var ITEM_INCREMENT = 4; //distance to move a flake on each loop
var ITEM_SPEED = 50;    //time delay in milliseconds before looping (def: 40)

// END CONFIGURABLE CONSTANTS

var IE_ENGINE = (document.all) ? true : false;
var NS_ENGINE = (document.layers) ? true : false;

var animatorThread = null;

 // To prevent a new flake from being created
 // on each loop time, we give it a sleep counter
 // that increments.
var sprawnSleeping = 0;

 // Stores the position of mouse.
var mousePos = new Array(2);
mousePos[0] = 0;
mousePos[1] = 0;

  // Stores previous positions of mouse.
  // So that we don't create a flake when
  // the mouse hasn't moved.
var oldMousePos = new Array(2);
oldMousePos[0] = 0;
oldMousePos[1] = 0;

  // A table of flake positions and information.
var trailMatrix = new Array(ITEM_COUNT);
for(var i=0; i<trailMatrix.length; i++) {
  trailMatrix[i] = new Array(5);
  trailMatrix[i][0] = 0;
  trailMatrix[i][1] = 0;
  trailMatrix[i][2] = 0;
  trailMatrix[i][3] = ITEM_STAGES;
  trailMatrix[i][4] = "mouseTrailer_" + i;
  document.writeln((IE_ENGINE) ? '<DIV ID="' + trailMatrix[i][4] + '" STYLE="position:absolute; width:'+ITEM_W+'px; height:'+ITEM_H+'px; visibility:hidden;"><img src="'+ITEM_SRC+'" border=0></DIV>' : (NS_ENGINE) ? '<LAYER ID="' + trailMatrix[i][4] + '" position="absolute" width='+ITEM_W+' height='+ITEM_H+' visible="hide"><img src="'+ITEM_SRC+'" border=0></LAYER>' : "");
}

function storeMousePos(e) {
  mousePos[0] = (IE_ENGINE) ? event.clientX+document.body.scrollLeft : (NS_ENGINE) ? e.pageX : 0;
  mousePos[1] = (IE_ENGINE) ? event.clientY+document.body.scrollTop : (NS_ENGINE) ? e.pageY : 0;
}

function sprawnNewTrail() {
  if(oldMousePos[0] != mousePos[0] || oldMousePos[1] != mousePos[1]) {
    var temp = trailMatrix[trailMatrix.length-1][4];
    for(var i=trailMatrix.length-1; i>0; i--) {
      trailMatrix[i][0] = trailMatrix[i-1][0];
      trailMatrix[i][1] = trailMatrix[i-1][1];
      trailMatrix[i][2] = trailMatrix[i-1][2];
      trailMatrix[i][3] = trailMatrix[i-1][3];
      trailMatrix[i][4] = trailMatrix[i-1][4];
    }
    trailMatrix[0][0] = mousePos[0];
    trailMatrix[0][1] = mousePos[1];
    trailMatrix[0][2] = ITEM_TRAVEL;
    trailMatrix[0][3] = ITEM_STAGES;
    trailMatrix[0][4] = temp;  //id for trailer layer
  }
  oldMousePos[0] = mousePos[0];
  oldMousePos[1] = mousePos[1];
}

function animateTrail() {
  for(var i=0; i<trailMatrix.length; i++) {
    if(trailMatrix[i][2] > 0) {
      trailMatrix[i][1] += ITEM_INCREMENT;
      trailMatrix[i][2]--;
      trailMatrix[i][3] = Math.ceil((trailMatrix[i][2] * ITEM_STAGES) / ITEM_TRAVEL);
      updateTrail(trailMatrix[i][4], trailMatrix[i][0], trailMatrix[i][1], trailMatrix[i][3]);
    } else {
      hideTrail(trailMatrix[i][4]);
    }
  }
  sprawnSleeping++;
  if(sprawnSleeping >= 2) {  //We create a new flake every 2 loops
    sprawnSleeping = 0;
    sprawnNewTrail();
  }
}

function updateTrail(obj, x, y, stage) {
  var imgTop = (ITEM_STAGES - stage) * ITEM_H;
  if(IE_ENGINE) {
    document.all[obj].style.clip = "rect("+imgTop +" "+ ITEM_W +" "+ (imgTop+ITEM_H)+" 0)";
    document.all[obj].style.left = x;
    document.all[obj].style.top = y - imgTop;
    document.all[obj].style.visibility = "visible";
  } else if(NS_ENGINE) {
    document.layers[obj].clip.top = imgTop;
    document.layers[obj].clip.bottom = imgTop + ITEM_H;
    document.layers[obj].left = x;
    document.layers[obj].top = y - imgTop;
    document.layers[obj].visibility = "show";
  }
}

function hideTrail(obj) {
  if(IE_ENGINE) {
    document.all[obj].style.visibility = "hidden";
  } else if(NS_ENGINE) {
    document.layers[obj].visibility = "hide";
  }
}

function init() {
  if(NS_ENGINE)document.captureEvents(Event.MOUSEMOVE);
  if(IE_ENGINE || NS_ENGINE) {
    document.onmousemove = storeMousePos;
    animatorThread = setInterval("animateTrail()", ITEM_SPEED);
  }
}

function end() {
  if(animatorThread != null) {
    clearInterval(animatorThread);
    animatorThread = null;
  }
}
//-->
</script>

Sustituye el primer <body> por este código desde la vista HTML



<body onload="init()" onunload="end()" style="font-family: Verdana">









elcharcoazul.te ayuda Este sitio web fue creado de forma gratuita con PaginaWebGratis.es. ¿Quieres también tu sitio web propio?
Registrarse gratis