Ver Mensaje Individual
  #52 (permalink)  
Antiguo 09/12/2002, 08:47
Avatar de Ruchu
Ruchu
 
Fecha de Ingreso: octubre-2001
Mensajes: 698
Antigüedad: 22 años, 6 meses
Puntos: 2
52. Un efecto chachi para texto y no muy complicado

un efecto chachi para texto y no muy complicado, no lo he hecho yo, lo copie de no se donde.
Código PHP:
<script>
var 
TimerID;
var 
updown true;
var 
str 1;
function 
start()
{
if (
document.all)
TimerID window.setInterval"wave()"100 );
}
function 
wave()
{
if ( 
str 10 || str )
updown = !updown;
if ( 
updown )
str++;
else
str--;
wft.filters"wave" ).phase str 20;
wft.filters"wave" ).strength str;
}
window.onload=start
</script>

<div id = "wft" style = "font-family:Arial;font-size:10pt;width:60px; filter:wave(add=0, freq=7, light=0, phase=0, strength=5)" class = "big"><b>Ruchu</b></div> 

Última edición por Ruchu; 09/12/2002 a las 08:56