javascript/jQuery

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

daeyun대윤 2018. 3. 13. 11:28
$(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