Internet Explorerで文字をブリンクさせるサンプルです.
<html>
<head>
<title>blink</title>
<script language="JavaScript">
<!--
var flg=0;
function blink(){
flg ^= 1;
if( flg == 1 ){
document.all.blnk.style.color = "blue"; //(1)
}
else{
document.all.blnk.style.color = document.bgColor; //(2)
}
timerID = setTimeout( "blink()" , 500 );
}
//-->
</script>
</head>
<body bgcolor="white">
<p id="blnk" style="color: blue"><big>Internet Explorerでもブリンクします.</big></p> //(3)
<script language="JavaScript">
<!--
blink(); //(4)
//-->
</script>
</body>
</html>
Internet Explorerでもブリンクします.