본문 바로가기
실전 코딩/javascript · jquery

클릭하면 지정 섹션으로 자연스럽게 이동하기

by 정리무새 2021. 7. 5.
728x90
반응형
$('.target').on('click', function(){
	var targetTop = $('.target').offset().top;
    
    $('html, body').stop().animate({scrollTop : targetTop}, 1000)
});

 

-  stop() : 현재 동작하고 있는 애니메이션은 즉시 동작이 중단 된다.

728x90
반응형

댓글