목차
CSS 방법 - 크로스 브라우징 X
jQuery 방법 - 크로스 브라우징 O
CSS 방법 - 크로스브라우징 X
(∵ IE, Safari 지원 X)
<style>
html {scroll-behavior: smooth; /* 부드러게 */}
#section1 {height: 600px; background-color: pink;}
#section2 {height: 600px; background-color: yellow;}
</style>
<div class="hz" id="section1" >
<h2>Section 1</h2>
<a href="#section2">섹션2로 이동</a>
</div>
<div class="hz" id="section2" >
<h2>Section 2</h2>
<a href="#section1">섹션1로 이동</a>
</div>
결과보기
jQuery 방법 - 크로스 브라우징 O
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("a").on('click', function(event) {
if (this.hash !== "") {
event.preventDefault();
var hash = this.hash;
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function(){
window.location.hash = hash;
});
}
});
});
</script>
<style>
#section1 {height: 600px; background-color: pink;}
#section2 {height: 600px; background-color: yellow;}
</style>
<div class="hz" id="section1" >
<h2>Section 1</h2>
<a href="#section2">섹션2로 이동</a>
</div>
<div class="main" id="section2" >
<h2>Section 2</h2>
<a href="#section1">섹션1로 이동</a>
</div>
결과보기
주소 복사
랜덤 이동