<span id="TexteBat" style="width:100%">
<h1>원하는 텍스트</h1>
</span>
</center>
<script>
<!--
var from = 4;    //시작하는테두리두께
var to = 12;       //끝나는 테두리 두께
var delay = 55;    //속도
var glowColor = "#00FF00";     //색깔
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>

익스플로러 전용입니다 +_+
Posted by 알 수 없는 사용자
,