[javascript] 상태선에서 글씨가 깜박임효과
로빈아빠
본문
<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();">
<div align="senter">
<table border=1 bordercolor=red cellpadding="0" cellspacing="0" width=550 height=50>
<tbody>
<tr>
<br><br><br><br><br><br>
<td><p align="center"><font color=ffffff size=3>상태선 부분에 글씨가 깜빡이고 있습니다.</font>
</td></tr>
</tbody></table></div>
</body>
</html>
[이 게시물은 VIRHAC님에 의해 2009-09-13 14:38:24 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();">
<div align="senter">
<table border=1 bordercolor=red cellpadding="0" cellspacing="0" width=550 height=50>
<tbody>
<tr>
<br><br><br><br><br><br>
<td><p align="center"><font color=ffffff size=3>상태선 부분에 글씨가 깜빡이고 있습니다.</font>
</td></tr>
</tbody></table></div>
</body>
</html>
[이 게시물은 VIRHAC님에 의해 2009-09-13 14:38:24 HTML에서 이동 됨]
관련링크
댓글목록
등록된 댓글이 없습니다.