| hrc= |
Linea en color: [hrc=color]grosor en número[/hrc] |
<div><hr style="height:{NUMBER}px; width:100%; border:0; color: {COLOR};background:{COLOR};" /></div> |
 |
No |
| rainbow2 |
Rainbow2: [rainbow2]Tu texto aquí[/rainbow2] |
<script type="text/javascript">
function MakeArray(n){
this.length=n;
for(var i=1; i<=n; i++) this[i]=i-1;
return this
}
hex=new MakeArray(16);
hex[11]="A"; hex[12]="B"; hex[13]="C"; hex[14]="D";
hex[15]="E"; hex[16]="F";
function ToHex(x){
var high=x/16;
var s=high+"";
s=s.substring(0,2);
high=parseInt(s,10);
var left=hex[high+1];
var low=x-high*16;
s=low+"";
s=s.substring(0,2);
low=parseInt(s,10);
var right=hex[low+1];
var string=left+""+right;
return string;
}
function fadeout(text){
text=text.substring(3,text.length-4);
color_d1=255;
mul=color_d1/text.length;
var j=1;
for(i=0;i<text.length;i++){
color_d1=255*Math.sin(i/(text.length/3));
color_h1=ToHex(color_d1);
color_d2=mul*i;
color_h2=ToHex(color_d2);
color_d3=mul*(text.length-i);
color_h3=ToHex(color_d3);
j = i;
if (text.substring(i,i+1) == '&')
{
for (j = i+1; j < text.length; j++)
{
if (text.substring(j,j+1) == ';') { break; }
}
if (j == text.length) { j = i; }
}
if (text.substring(i,i+1) == '<')
{
for (j = i+1; j < text.length; j++)
{
if (text.substring(j,j+1) == '>') { break; }
}
if (j == text.length) { j = i; }
}
document.write("<FONT COLOR='#"+color_h3+color_h1+color_h2+"'>"+
text.substring(i,j+1)+'</FONT>');
i = j;
}
}
</script>
<script language="JavaScript"><!--
{fadeout("-->{SIMPLETEXT}<!__");}
//--></script> |
 |
No |
| rating |
Rating: [rating]Color[/rating] |
<div class="js-kit-rating" starColor="{IDENTIFIER}"></div>
<script src="http://js-kit.com/ratings.js"></script> |
 |
No |
| mp |
Reproductor audio: [mp]url de la canción/sonido...[/mp] |
<div>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="mp3playerlightsmallv3" align="middle" height="25" width="210">
<param name="allowScriptAccess" value="sameDomain">
<param name="movie" value="http://www.podbean.com/podcast-audio-video-blog-player/mp3playerlightsmallv3.swf?audioPath={URL}&autoStart=yes">
<param name="quality" value="high"><param name="bgcolor" value="#ffffff"><param name="wmode" value="transparent">
<embed src="http://www.podbean.com/podcast-audio-video-blog-player/mp3playerlightsmallv3.swf?audioPath={URL}&autoStart=yes" quality="high" loop="infinite" name="mp3playerlightsmallv3" allowscriptaccess="sameDomain" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" align="middle" height="25" width="210"><a style="left: 717px ! important; top: 642.833px ! important;" title="Pulse aquà para bloquear este objeto con Adblock Plus" class="wuobmshkftaecsrgtshn jbwcyudsournxwqdcwoe" href="http://www.podbean.com/podcast-audio-video-blog-player/mp3playerlightsmallv3.swf?audioPath={URL}&autoStart=yes"></a>
</object>
</div> |
 |
No |
| style= |
Style: [style=código css aquí]Texto[/style] |
<div style="{SIMPLETEXT1}">{TEXT2}</div> |
 |
No |
| t |
Tachar texto: [t]Texto[/t] |
<del>{TEXT}</del> |
 |
No |
| marquee2= |
Texto arriba/abajo: [marquee2=numero(velocidad)]su texto[/marquee2] |
<marquee scrollamount={NUMBER} direction="down" loop=true>{TEXT}</marquee> |
 |
No |
| colorslide= |
Texto con color deslizante: [colorslide=Texto]color,color,numero(tiempo en milisegundos)[/colorslide] |
<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> |
 |
Sí |
| rc |
Texto montaña rusa: [rc]texto[/rc] |
<div>
<script type="text/javascript">
/*
Roller Coaster Script-
By JavaScript Kit
Over 200+ free scripts here!
*/
var fs=1
var direction="right"
function rollertext(whichone){
var thetext=whichone
for (i=0;i<thetext.length;i++){
document.write(thetext.charAt(i).fontsize(fs))
if (fs<7&&direction=="right")
fs++
else if (fs==7){
direction="left"
fs--
}
else if (fs==1){
direction="right"
fs++
}
else if (fs>1&&direction=="left")
fs--
}
}
//Change below text to your won
rollertext("{TEXT}")
</script>
</div> |
 |
No |
| font= |
Tipo de fuente: [font=nombre fuente]tu texto[/font] |
<span style="font-family:{SIMPLETEXT};">{TEXT}</span> |
 |
Sí |