반응형 top_btn1 [script] top_btn 탑버튼 animation 스크롤을 150이상 내렸을 때 탑버튼이 보임. 탑 버튼 클릭 했을 때 제일 윗페이지로 이동하는 애니메이션. 스크롤 이동해도 오른쪽 하단에 계속 있어야하기때문에 position:fixed로 고정시킴. $(window).scroll(function(){ if ($(window).scrollTop() > 150){ $("#top_btn").addClass("on"); } else { $("#top_btn").removeClass("on"); } }); $("#top_btn").click(function(){ $("body,html").animate({scrollTop:0},500); }); TOP #top_btn{position:fixed; right:50px; bottom:-50%; width:55px; h.. 2020. 5. 15. 이전 1 다음 반응형