반응형
div에 아이디를 잡아놓고 nav a tag에 href="#id"로 주었다.
HTML
<a href="#service">서비스</a>
<div id="#service">
...
</div>
여기서 스크롤을 부드럽게 하려면 js가 필요할 줄 알았는데 그렇지 않았다.
CSS
html{
scroll-behavior: smooth;
}
위 처럼 html태그에 전체적으로 scroll-behavior: smooth; 로 주면 된다.
하지만 JS로 구성할 수도 있다.
function onLinkClick() {
document.getElementsByTagName('h2')[3].scrollIntoView();
}
와 같이 사용할 수 있나보다.
또는
$('.smooth-goto').on('click', function() {
$('html, body').animate({scrollTop: $(this.hash).offset().top - 50}, 1000);
return false;
});
등과 같이 사용 할 수 있다.
'웹 프로그래밍' 카테고리의 다른 글
[Node] node 버전 바꾸기, pm2 사용시 유의사항 (The "mode" argument must be integer. Received an instance of Object) (0) | 2020.08.09 |
---|---|
[CSS] 글자에 테두리 적용하는 방법 (text-stroke, text-shadow) (0) | 2020.08.07 |
[CSS,JS] 모바일에서 강력 새로고침, CSS,JS 적용 안될 때 (0) | 2020.08.05 |
[CSS] textarea 크기 고정 및 다른 속성들 (0) | 2020.08.04 |
[LESS] media query, 미디어 쿼리 쓰는 방법 (0) | 2020.07.30 |
댓글