Blinking Text

S

Steve Easton

Requires javascript in Internet Explorer. Most people don't like it,
but.....
Place this between the head tags.

<script type="text/javascript">
function doBlink() {
var b = document.all.tags("BLINK")
for ( i=0; i < b.length; i++)b.style.visibility = (b.style.visibility
== "" )? "hidden" : "" }
function startBlink() {
if (document.all)setInterval("doBlink()",1000)}
window.onload = startBlink;
</script>

Then surround the text you want to blink with blink tags.

<blink>this text will blink</blink>

Note: this script is set to blink one second on and one second off.
Do *NOT* make it blink faster ( by setting the value below 1000 ) as it can
cause "Light Flicker Syndrome" seizures in people who are prone to Epileptic
seizures.


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top