▒▒ [생활정보] ▒▒/―•【 컴의상식 】
상태선에 글 깜박이기
구름나그네의집
2007. 7. 27. 14:38
<html>
<head><title></title>
<script language="JavaScript">
<!--
var yourwords = "희망이란, 찾아 나선 사람에게만 나타나는 별빛이다.....";
var speed = 150;
var control = 1;
function flash()
{
if (control == 1)
{
window.status=yourwords;
control=0;
}
else
{
window.status="";
control=1;
}
setTimeout("flash();",speed);
}
// -->
</script>
</head>
<body bgcolor=#000080 onload="flash();">
</body>
</html>