본문 바로가기
Js

goto top

by 영감은어디에 2024. 4. 27.
$(window).scroll(function(){
    if($(this).scrollTop() >= 300){
        $('.goTop').fadeIn();
    }else{
        $('.goTop').fadeOut();
    }
});
$('.goTop').click(function(e){
    e.preventDefault();
    $('html, body').stop().animate({scrollTop:0}, 500);
});