Blinking Text

T

techforce

How come Netscape supports Blinking Font, and none of the MS products like
Front page or IE will show the blinking font?
 
T

Tom Pepper Willett

Because the blinking font is proprietary to NS. Just like the FP marquee is
proprietary to IE.

Different browsers have different proprietary features. It's just the way
it is.
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
FrontPage 2003 Product Information:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
Understanding FrontPage:
http://msdn.microsoft.com/office/understanding/frontpage/
===
| How come Netscape supports Blinking Font, and none of the MS products like
| Front page or IE will show the blinking font?
|
|
 
D

Dwayne Conyers

techforce said:
How come Netscape supports Blinking Font, and none of the MS products like
Front page or IE will show the blinking font?

You can make text blink using JavaScript or a Java applet -- but the
attribute is not supported by IE...
 
S

Steve Easton

Using javascript it is:

<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()",1500)}
window.onload = startBlink;
</script>

<<blink>this text will blink</blink>

The interval in this script is set a 1.5 seconds. Do **not** set it lower ( faster ) as it can
cause seizures in people susceptible to epileptic seizures.
( It's called "light flicker syndrome" )


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

p c

You can have blinking with CSS/stylesheet.

But blinking is now considered non-[rpfessional.

...PC
 

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

Blinking effect 0
front Page 2003 help with blinking text 5
blinking text 10
Descenders clipped 0
Blinking Button 2
Need help modifying code 0
Text Effects Scrolling or Blinking text 1
blinking text 2

Top