Mostrando Codigo - Javascript
EXPLICACION
solo debes cambiar la imagen
<html>
<head>
<title>Efecto</title>
<script for="window" event="onload" language="JavaScript">
phaseit();
</script>
<script language="javascript">
// Codogo ofrecido por tutores.org
var phaseme = 0;
function phaseit() {
phaseme = ( phaseme + 5 ) % 100;
efecto.filters[0].phase = phaseme;
window.setTimeout( "phaseit()", 0050, "javascript" );
}
</script>
</head>
<body bgcolor="white">
<div id="efecto" style="position:absolute;width:250;height:150;top:0px;left:0px;filter:wave(strength=40, freq=4, lightstrength=0, add=0, phase=0)">
<center><img src="/tutores/images/mundo.gif" border="0" height="149" width="184"></center>
</div>
</body>
</html>
ENLACE AL CODIGO
Si quieres enlazar desde tu pagina a este codigo
COMENTARIOS
Aun no existe ningun comentario para este Codigo.