noloencuentro
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.

Script - Texto con fondo que se expande

Ir abajo

Script Script - Texto con fondo que se expande

Mensaje por WLancelot Vie 10 Dic 2010, 08:43

Gracias a este script podemos incluir un texto con fondo expandible:

Código:

<span id="TexteBat" style="width:100%">
<h1>no lo encuentro</h1>
</span>
</center>
<script>
<!--
var from = 4;
var to = 12;
var delay = 55;
var glowColor = "#63b9ff";
var i = to;
var j = 0;

textPulseDown();

function textPulseUp()
  {
  if (!document.all)
      return
  if (i < to)
      {
      TexteBat.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
      i++;
      theTimeout = setTimeout('textPulseUp()',delay);
      return 0;
      }

  if (i = to)
      {
      theTimeout = setTimeout('textPulseDown()',delay);
      return 0;
      }
  }

function textPulseDown()
  {
  if (!document.all)
      return
  if (i > from)
      {
      TexteBat.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
      i--;
      theTimeout = setTimeout('textPulseDown()',delay);
      return 0;
      }
  if (i = from)
      {
      theTimeout = setTimeout('textPulseUp()',delay);
      return 0;
      }
  }
//-->
</script>

Prueba el script en el portal, en el widget de prueba de códigos.
o aquí: Prueba códigos

NOTA: Creo que no funciona con algunas versiones de Mozilla, y con el Crome tampoco.
WLancelot
WLancelot
Admin
Admin

Masculino Tauro Gato
Mensajes : 700
Reputación : 7466
Agradecido : 33
Inscripción : 23/09/2009
Edad : 49
Localización : Camelot
Pais : España

Volver arriba Ir abajo

Volver arriba

- Temas similares

 
Permisos de este foro:
No puedes responder a temas en este foro.