Página 1 de 1

BBCode Texto decorado arcoiris  Tema Solucionado

Publicado: 04 Dic 2009, 17:59
por Writkas
BBCode

Código: Seleccionar todo

[rainbow]{TEXT}[/rainbow]
HTML

Código: Seleccionar todo

<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="{TEXT}" // 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>
Línea de ayuda

Código: Seleccionar todo

El texto se muestra con un decorado arcoiris. Ej: [rainbow]Texto aquí[/rainbow]
Un ejemplo en el segundo post de este tema: http://descarga-directa.webcindario.com ... 17b89e#p11

:mrgreen:

Re: BBCode Texto decorado arcoiris

Publicado: 04 Dic 2009, 18:05
por Alorse
Excelente aporte Writkas, seria bueno que mencionaras el autor... inclusive si fuiste tu :jaja:

Un saludo.

Re: BBCode Texto decorado arcoiris

Publicado: 12 Dic 2009, 16:55
por Writkas
Alorse escribió:Excelente aporte Writkas, seria bueno que mencionaras el autor... inclusive si fuiste tu :jaja:
Hola, el autor es Matt Hedgecoe, yo solamente lo transforme a BBCode.

Vean que se le puede modificar la velocidad si desean. Pero tiene un problema este BBCode, es que si se pone dos veces en un topic funciona solo el primero.

Osea:

[rainbow]Funciona[/rainbow]

[rainbow]no funciona[/rainbow]

Saludos

Re: BBCode Texto decorado arcoiris

Publicado: 27 Ene 2010, 07:19
por Jely2V
ha hermoso bbcode gracias... ya lo he puesto en mi web... FELICIDADES POR ESTA PAGINA, he visto que aqui hay algunos de tomatoma lamento lo de su web... esperemos esta nunca se pierda

Gracias he aprendido mucho...