본문 바로가기

javascript/jQuery

[jQuery] scroll to top 스크롤 탑 버튼 만들기

$(document).ready(function(){
  // hide #toTop first
  $("#toTop").hide();

  // fade in #toTop
  $(function () {
    $(window).scroll(function () {
        if ($(this).scrollTop() > 100) {
            $('#toTop').fadeIn();
        } else {
            $('#toTop').fadeOut();
        }
    });

    // scroll body to 0px on click
    $('#toTop a').click(function () {
        $('body,html').animate({
            scrollTop: 0
        }, 800);
        return false;
    });
  });
});


See the Pen scroll to top button by daeyun (@daeyun) on CodePen.

728x90
300x250