상세 컨텐츠

본문 제목

자바스크립트 글자 하나씩 나왔다가 사라지기

관리X 과거글

by 까먹기전에 2015. 2. 17. 21:15

본문

반응형


<html>

 <head>

 <style type="text/css">

 font { font-size:10em; }

 </style>

 <script>

var array=["가","나","다","라","마","바","사","아","자"];

this.cnt=0;

this.cnt2=0;

 window.onload=function(){

 ff();

 }




 function ff(){

if(cnt==9){

    clearTimeout(timer);

           aa();

           

        }

if(cnt!=9){

    f.innerHTML+=array[cnt];

  cnt++;

         cnt2++;

         timer=setTimeout("ff()",300);

}


 }


function aa(){

          

var str=f.innerHTML;

     

  f.innerHTML=str.substring(0,cnt2);

  if(cnt2>=0){

  cnt2--;

timer2=setTimeout("aa()",300);

 

}

if(cnt2==0){

f.innerHTML="";

           clearTimeout(timer2);

cnt=0;

ff();  

    }


}


 </script>

 </head>

 <body>

<div id="f"></div>

 </body>

</html>



관련글 더보기