<span id="TexteBat" style="width:100%">
<h1>삶 의 향 기</h1>
</span>
</center>
<script>
<!--
var from = 4; //시작하는테두리두께
var to = 12; //끝나는 테두리 두께
var delay = 55; //속도
var glowColor = "skyblue"; //색깔
var i = to;
var j = 0;
textPulseDown();
function textPulseUp()
{
if (!document.all)
return
if (i < to)
{
TexteBat.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i++;
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
if (i = to)
{
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
}
function textPulseDown()
{
if (!document.all)
return
if (i > from)
{
TexteBat.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i--;
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
if (i = from)
{
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
}
//-->
</script>
빨간색으로 된 부분을 수정해주세여
'Html & Css' 카테고리의 다른 글
글을 누르면 정답이 보이게 (0) | 2016.06.04 |
---|---|
튀어나와 보이는 글씨,들어가 보이는 글씨 (0) | 2016.06.04 |
폼필드안에 텍스트를 반짝이기 (0) | 2016.06.04 |
위로 흐르는 이미지(마우스대면 멈춤) (0) | 2016.06.04 |
td 에 스크롤바 생성하기 (0) | 2016.06.04 |