본문 바로가기
▒▒ [생활정보] ▒▒/―•【 컴의상식 】

상태선에 글 깜박이기

by 구름나그네의집 2007. 7. 27.

<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>

'▒▒ [생활정보] ▒▒ > ―•【 컴의상식 】' 카테고리의 다른 글

그림자 글씨 쓰기  (0) 2007.07.27
상태선에 글 흐르기  (0) 2007.07.27
테두리 선 만들기  (0) 2007.07.27
새창띄우기  (0) 2007.07.26
object띄우기  (0) 2007.07.26

댓글