2007. 6. 28. 13:03
<html>
<script>
<!-- Beginning of JavaScript -

var thissize=9;//폰트 크기
var textfont="굴림"//폰트명

var textcolor= new Array()//색깔 지정
    textcolor[11]="EEEEEE"
    textcolor[10]="DDDDDD"
    textcolor[9]="CCCCCC"
    textcolor[8]="AAAAAA"
    textcolor[7]="888888"
    textcolor[6]="666666"
    textcolor[5]="555555"
    textcolor[4]="444444"
    textcolor[3]="333333"
    textcolor[2]="222222"
    textcolor[1]="111111"
    textcolor[0]="000000"

var message = new Array()//메세지 지정
    message[0]="진정한 나를 알고 싶다."
    message[1]="<br><br><br>다른 사람안의 나와 진정한 나 사이의 차이..."
    message[2]="내가 담겨있는 또 다른 케이스"
    message[3]="<br><br>그 안에 솔직한 나를 담는다."
    message[4]="<br>Nude | Myself and Byself"
    message[5]="SUBCASE.NET"

var i_blurstrength=30//샤샤샥 움직이는 범위
var i_message=0;
var i_textcolor=0;
var count = 0;

function blurtext() {                
        if(document.all) {
                if (i_blurstrength >=-2) {
                        if (i_textcolor >=textcolor.length-1) {i_textcolor=textcolor.length-1}
                        blurthis.innerHTML="<span id='blurpit1' style='position:absolute;visibility:visible;width:600px; top:5px;left:5px;filter:blur(add=0,strength="+i_blurstrength+",direction=90);font-family:"+textfont+";font-size:"+thissize+"pt;color:"+textcolor[i_textcolor]+"'>"+message[i_message]+"</span>";
                document.close()
                i_blurstrength=i_blurstrength-2
                i_textcolor++
                var timer=setTimeout("blurtext()",50)//함수 호출 텀
                }
               
                else {
                        if (i_textcolor >=textcolor.length-1) {i_textcolor=textcolor.length-1}
                        blurthis.innerHTML="<span id='blurit1' style='position:absolute;visibility:visible;width:600px; top:5px;left:5px;filter:blendTrans(duration=3);font-family:"+textfont+";font-size:"+thissize+"pt;color:FFFFFF'>"+message[i_message]+"</span>";
                        i_message++
                        if (i_message>=message.length){i_message=0}
                       
                        i_blurstrength=30//샤샤샥 움직이는 범위
                        i_textcolor=0
                        clearTimeout(timer)
                        var timer=setTimeout("blurtext()",2000)//함수 호출 텀
                        count++;
                        if (count==6) clearTimeout(timer);//몇번 도는지 지정
                }
        }       
}
// - End of JavaScript - -->
</script>
<head>
<title>Nude | Myself and Byself</title>
<body  bgcolor=0000000 onload=blurtext() scroll=no>
<div id=blurthis style="VISIBILITY: visible; POSITION: absolute; bottom:100; left:600"></div>
</body>
</html>