본문 바로가기
Open Source

jquery-smooth-scroll

by 영감은어디에 2023. 4. 19.

https://github.com/kswedberg/jquery-smooth-scroll

 

GitHub - kswedberg/jquery-smooth-scroll: Automatically make same-page links scroll smoothly

Automatically make same-page links scroll smoothly - GitHub - kswedberg/jquery-smooth-scroll: Automatically make same-page links scroll smoothly

github.com

<script src="https://cdn.statically.io/gh/kswedberg/jquery-smooth-scroll/3948290d/jquery.smooth-scroll.min.js"></script>
// smooth scroll
	$('a').click(function(event) {
		event.preventDefault();
		var link = this;
		$.smoothScroll({
			scrollTarget: link.hash
		});
	});