Blink 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

Blink BBCode

Post by BBCode Bot »

Blink BBCode

Author:
Description: The Blink BBCode makes it possible to insert blinking text in posts.
Testet and working in Firefox, Internet Explorer and Opera.

BBCode:

Code: Select all

[blink]{INTTEXT}[/blink]
HTML:

Code: Select all

<script type="text/javascript">

  function colorblink(elmid,ms){
    elm=document.getElementById(elmid);
    elm.style.color="rgb("+Math.floor(Math.random()*255)+","+Math.floor(Math.random()*255)+","+Math.floor(Math.random()*255)+")";
    setTimeout("colorblink('"+elmid+"',"+ms+");",ms);
  }
</script>
<div id="{INTTEXT}">{INTTEXT}</div>

<script type="text/javascript">colorblink("{INTTEXT}",800);</script>
Helpline:

Code: Select all

Blink: [blink]Blinking text[/blink]
Example:

Code: Select all

Demo:
[blink]Testing[/blink]

Demo bold:
[b][blink]Testing bold[/blink][/b]

Demo bold and huge text:
[size=200][b][blink]Testing bold and huge text[/blink][/b][/size]
Demo:
[blink]Testing[/blink]
Locked