a태그 앵커 smooth scrolling

Jiwontwopunch·2022년 5월 23일
0

독학

목록 보기
64/102
post-thumbnail

jQuery 플러그인 사용

<script>
  // 선택자 : a태그, btn-gototop...
  $('선택자').click(function(){
  	$scrollTo(this.hash || 0, 900) // 스크롤되는 속도 0.9s
  	e.preventDefault();
})
</script>

CSS 속성 사용 (추천 ★)

html {
scroll-behavior: smooth;
}

단, IE에서는 사용 불가

0개의 댓글