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

texto arcoiris

Ir abajo

texto arcoiris Empty texto arcoiris

Mensaje por Invitado Jue 16 Jul - 23:29

es bastante largo el codigo pero apretando (Ctrl + F) y escribiendo) texto aqui ,lo borran y ponen lo que quieren xD

Código:
<script>

/*
RAINBOW TEXT script by Matt Hedgecoe (c) 2002
Featured on Javascript Kit
For this script, visit http://www.javascriptkit.com
*/

// ********** cambia aquí

var text="texto aqui" // tu texto
var speed=80 // velocidad de movimiento


if (document.all||document.getElementById){
document.write('<span id="highlight">' + text + '</span>')
var storetext=document.getElementById? document.getElementById("highlight") : document.all.highlight
}
else
document.write(text)
var hex=new Array("00","14","28","3C","50","64","78","8C","A0","B4","C8","DC","F0")
var r=1
var g=1
var b=1
var seq=1
function changetext(){
rainbow="#"+hex[r]+hex[g]+hex[b]
storetext.style.color=rainbow
}
function change(){
if (seq==6){
b--
if (b==0)
seq=1
}
if (seq==5){
r++
if (r==12)
seq=6
}
if (seq==4){
g--
if (g==0)
seq=5
}
if (seq==3){
b++
if (b==12)
seq=4
}
if (seq==2){
r--
if (r==0)
seq=3
}
if (seq==1){
g++
if (g==12)
seq=2
}
changetext()
}
function starteffect(){
if (document.all||document.getElementById)
flash=setInterval("change()",speed)
}
starteffect()
</script>
 



:lol: ❤ :cyclops: :cheers: :affraid:
Anonymous
Invitado
Invitado


Volver arriba Ir abajo

texto arcoiris Empty Re: texto arcoiris

Mensaje por Minoru-kun Vie 17 Jul - 0:07

gracias por este codigo
Minoru-kun
Minoru-kun
Administrador
Administrador

Masculino Cantidad de envíos : 1725
Edad : 29
Localización : bogota
Fecha de inscripción : 06/03/2009

https://mychobitsy.activoforo.com

Volver arriba Ir abajo

texto arcoiris Empty Re: texto arcoiris

Mensaje por Invitado Vie 17 Jul - 0:18

de nada
Anonymous
Invitado
Invitado


Volver arriba Ir abajo

texto arcoiris Empty Re: texto arcoiris

Mensaje por Contenido patrocinado


Contenido patrocinado


Volver arriba Ir abajo

Volver arriba

- Temas similares

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