top 버튼& down 버튼
$(".top_bt").click(function(){ $("body,html").stop().animate({scrollTop:0},600,"swing"); return false; }); $('.down_bt').click(function(event) { event.preventDefault(); var n = $(document).height(); $('html, body').animate({ scrollTop: n }, 1000); });