Recent Posts
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
관리 메뉴

I AM EVERYTHING

[jQuery] 페이지 상단, 하단 이동 본문

programming

[jQuery] 페이지 상단, 하단 이동

박꽁냥 2018. 9. 14. 08:22

$('.btn_top').click(function(e) {

    e.preventDefault();

    $('html, body').animate({

      scrollTop: 0

    }, 400)

  });

  var maskHeight = $('.container').height();

  $('.btn_bottom').click(function(e) {

    e.preventDefault();

    $('html, body').animate({

      scrollTop: maskHeight

    }, 400)

  });

Comments