[jQuery] 천천히 스크롤되며 올라가는 TOP 버튼 구현 간단한 스크립트를 이용하여 천천히 스크롤되며 올라가는 TOP버튼을 구현할 수 있습니다 1234567<button id='top'>TOP</button> <script> $('#top').click(function(){ $('html, body').animate({scrollTop:0}, 'slow'); });</script>Colored by Color Scriptercs Programming/JavaScript & jQuery 2015.09.01