Color Slide BBCode

Ordinary BBCode Database
BBCodes that need nothing else than installation through ACP
There is no support here! Only Read Access!
Locked
User avatar
BBCode Bot
BBCoder IV
BBCoder IV
Posts: 239
Joined: 04 Mar 2010, 15:04
Location: bbcode table

Color Slide BBCode

Post by BBCode Bot »

Color Slide BBCode

Author: Lucky
Description: The Color Slide BBCode creates a written sliding two colors text. Adjustable color and speed.
Note! Can only ne used once per page.
[valid][/valid]

BBCode:

Code: Select all

[colorslide={SIMPLETEXT}]{COLOR1},{COLOR2},{NUMBER}[/colorslide]
HTML:

Code: Select all

<script type="text/javascript">
 
var message="{SIMPLETEXT}"
var neonbasecolor="{COLOR1}"
var neontextcolor="{COLOR2}"
var flashspeed={NUMBER} //in milliseconds
 
///No need to edit below this line/////
 
var n=0
if (document.all||document.getElementById){
document.write('<font color="'+neonbasecolor+'">')
for (m=0;m<message.length;m++)
document.write('<span id="neonlight'+m+'">'+message.charAt(m)+'</span>')
document.write('</font>')
}
else
document.write(message)
 
function crossref(number){
var crossobj=document.all? eval("document.all.neonlight"+number) : document.getElementById("neonlight"+number)
return crossobj
}
 
function neon(){
 
//Change all letters to base color
if (n==0){
for (m=0;m<message.length;m++)
//eval("document.all.neonlight"+m).style.color=neonbasecolor
crossref(m).style.color=neonbasecolor
}
 
//cycle through and change individual letters to neon color
crossref(n).style.color=neontextcolor
 
if (n<message.length-1)
n++
else{
n=0
clearInterval(flashing)
setTimeout("beginneon()",1500)
return
}
}
 
function beginneon(){
if (document.all||document.getElementById)
flashing=setInterval("neon()",flashspeed)
}
beginneon()
 
</script>
Helpline:

Code: Select all

Colorslide: [colorslide=Text]color,color,number (time in milliseconds)[/colorslide]
Example:

Code: Select all

[colorslide=This BBCode is made by Lucky]green,red,100[/colorslide]
Demo:
[colorslide=This BBCode is made by Lucky]green,red,100[/colorslide]
User avatar
Lucky
BBCoder II
BBCoder II
Posts: 8
Joined: 26 May 2010, 23:31
BBCodes: 100
Favourite BBCode: Vozme bbcode MOD
Favourite MOD: Seo Premod
Location: Italy
Contact:

Re: Color Slide BBCode

Post by Lucky »

I am, the autor of BBCode, but is not tied to my username :?
Locked