티스토리 뷰

모 사이트에서 여러개의 알림메세지를 하나씩 보여주는 기능을 보고 작성해 봄

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 $(document).ready(function(){
        
            arr = new Array();
            $('#notice_content p').each(function(index){
                arr[index] = this;
            });
            
            idx=0;
            len=$('#notice_content p').length;
            setInterval(
                function(){
                    if(idx==len){
                        idx=0;
                    }
                    $('#notice_content p').css('display','none');
                    $(arr[idx]).slideDown('slow',function(){
                        idx++;});
                },2000);
        
        });

 


선택자를 적절히 사용해서 메세지를 출력해봅시다.

 

 

알림

당신은...

사랑받기 위해..

태어난 사람







Comments
최근에 올라온 글
최근에 달린 댓글
TAG
more
Total
Today
Yesterday