사이트 우측 하단에 알림창 표시

Posted by 성순군
2017. 12. 25. 11:36 정보

<script> 

        $(window).load(function () { 

            $('#layer_ad').css({ 

                'position':'fixed', 

                'bottom':0, 

                'right':'56px', 

                'padding':'10px', 

                'font-size':'12px', 

                'width':'250px', 

                'height':'90px', 

                'border-width':'1px 1px 0 1px', 

                'border-color':'#aaaaaa', 

                'border-style':'solid', 

'background-color': '#fafafa', 

            }); 

            setInterval(function() { 

                if ($('#layer_ad').css('bottom') != '-200px') { 

                    $('#layer_ad').animate({'bottom':'-200px'}, 'slow'); 

                } //else { 

                    //$('#layer_ad').animate({'bottom':'0px'}, 'slow'); 

                //} 

            }, 5000); 

        }); 

    </script> 

<div id="layer_ad">

내용

</div>