Ordinary BBCode Database
BBCodes that need nothing else than installation through ACP
Post
by BBCode Bot » 06 Mar 2010, 07:57
Blinking BBCode
Author : Stoker
Description : With the Blinking BBCode you can insert blinking text
Note that the code is not valid xhtml, but it works fine.
BBCode:
HTML:
Code: Select all
<script type="text/javascript">
<!--
function doBlink() {
var b = document.all.tags("BLINK")
for ( i=0; i < b.length; i++)b[i].style.visibility = (b[i].style.visibility
== "" )? "hidden" : "" }
function startBlink() {
if (document.all)setInterval("doBlink()",800)}
window.onload = startBlink;
//-->
</script>
<blink>{INTTEXT}</blink>
Helpline:
Example:
Code: Select all
[blink2]Blinking text using javasript[/blink2]
Demo:
[blink2]Blinking text using javasript[/blink2]
Post
by cisco007 » 28 Mar 2010, 01:36
so i just increase the 800 for it to blink slower?
Post
by Stoker » 28 Mar 2010, 05:47
I guess its worth a try
Post
by cisco007 » 28 Mar 2010, 11:21
i guess it is!
Post
by neuropass » 08 Jun 2010, 15:35
it doesn't seem to be working when you have special characters in it...
Like
Post
by Stoker » 08 Jun 2010, 16:08
That because of the js, cant do anything about it.
Post
by Denny » 04 Aug 2010, 15:11
May I ask what are you using to display the copyright notice on here, when you click copyright ? Is this a combination of the Blink, plus the copyright notice bbcode ?
Post
by Stoker » 04 Aug 2010, 18:49
I use the html for the blink code on that page.
The rest is just som plain html coding.
Post
by Denny » 04 Aug 2010, 19:44
Thank you Stoker.
Post
by Ephemeraboy » 15 Aug 2010, 23:17
is this work for all browser stoker...??