Přihlašovací jméno: Heslo:
Registrace nového uživatele
Moderátor: toedder 
 Computers

Have computer questions, hints, or tips?

BBW's Tips on how to speed up page load the brainking site
Computers (BIG BAD WOLF, 2007-03-12 20:16:01)



Co je nového o flash disks?
Seznam diskusních klubů
Mód: Každý může psát
Hledat v příspěvcích:  

28. února 2006, 20:42:31
Chicago Bulls 
Subjekt: Re:
Andersp: No there is no _tag_ that you can use in both for blinking. There are other ways to make a text to blink in IE and here is one:

Put inside the HTML code for IE and at the starting of writing the code, for example after the body definition, the following:
------------
<SCRIPT>

funct
ion DoBlink()
{
var blink = document.all.tags("BLINK")
for (var i=0; i blink.length; i++)
blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : ""
}

function startBlink()
{
if (document.all)
setInterval("doBlink()",600)
}

window.onload = startBlink;

</SCRIPT>
--------------


So with this way, you can from now on use in IE the blink tag in its usual form!
That means if you write the above script, you then can write <blink>Teeeeeeext</blink> and the teeeeeext to be blink in IE!
Notice the number 600. You can change it and control the blinking frequency......



For example in this:
------------
<html>
<body>


<SCRIPT>

function DoBlink()
{
var blink = document.all.tags("BLINK")
for (var i=0; i blink.length; i++)
blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : ""
}

function startBlink()
{
if (document.all)
setInterval("doBlink()",600)
}

window.onload = startBlink;

</SCRIPT>


Text-1 <br>
<blink>Text-2</blink>


</body>
</html>
----------------
-----

The text-1 will NOT blink while the text-2 will blink in IE!

Datum a čas
Přátelé on-line
Oblíbené kluby
Společenstva
Tip dne
Copyright © 2002 - 2024 Filip Rachůnek, všechna práva vyhrazena.
Zpět na vrchol