Make HTML Text Flashing! |
| Network Sites: RARDownload | WarezGuru | FullDown | Friends: Your Link Here! |
|---|
![]() ![]() |
Make HTML Text Flashing! |
Oct 14 2008, 11:56 AM
Post
#1
|
|
![]() SKDown.Net Founder Group: |
You can do it with some JavaScript magic...
<script type="text/javascript">
<!-- var b_timer = null; // blink timer var b_on = true; // blink state var blnkrs = null; // array of spans function blink() { var tmp = document.getElementsByTagName("span"); if (tmp) { blnkrs = new Array(); var b_count = 0; for (var i = 0; i < tmp.length; ++i) { if (tmp[i].className == "blink") { blnkrs[b_count] = tmp[i]; ++b_count; } } // time in m.secs between blinks // 500 = 1/2 second blinkTimer(500); } } function blinkTimer(ival) { if (b_timer) { window.clearTimeout(b_timer); b_timer = null; } blinkIt(); b_timer = window.setTimeout('blinkTimer(' + ival + ')', ival); } function blinkIt() { for (var i = 0; i < blnkrs.length; ++i) { if (b_on == true) { blnkrs[i].style.visibility = "hidden"; } else { blnkrs[i].style.visibility = "visible"; } } b_on =!b_on; } //--> </script> A tad of CSS, e.g.,... <style type="text/css">
.blink { font-size: 15px; color: red; display: inline; } </style> And a bit of mark-up... ... <body onload="blink();"> ...
This is a test of the <span class="blink">blinking text</span> thingy...which <span class="blink">blinks</span> (in theory)... ... But just a warning, most people don't like alot of blinking stuff, so you probably should not over-use the effect. -------------------- |
|
|
|
Similar Topics
| Topic Title | Replies | Topic Starter | Views | Last Action | |
|---|---|---|---|---|---|
![]() |
Text Express 2 Deluxe |
1 | gougerlee | 18 | 29th June 2009 - 04:51 PM Last post by: tranbarbara |
![]() |
Text to Speech |
0 | CatchItBaby | 33 | 29th June 2009 - 03:00 PM Last post by: CatchItBaby |
![]() |
TextCatch v2.6.0.1 |
1 | sundarsmart | 110 | 14th June 2009 - 04:10 PM Last post by: LC_Bot |
![]() |
Text to Speech Maker 1.7.1 |
0 | The_Poster | 5 | 2nd June 2009 - 09:55 AM Last post by: The_Poster |
![]() |
Text to Speech Maker v1.7.1 |
0 | finsoftsdk9 | 67 | 2nd June 2009 - 06:23 AM Last post by: finsoftsdk9 |
![]() ![]() |
|
Lo-Fi Version Delete cookies set by this board · Mark all posts as read |
Time is now: 6th July 2009 - 11:32 PM |