Q2) Window 토끼를 찾아라
Q) 맨 상단의 버튼을 눌러 당근그림 사이에 있는 토끼로 이동하도록 만들어보기.
A)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Scroll</title>
<style>
body{
background-color: black;
text-align: center;
}
img{
display: block;
margin : auto;
}
button{
background-color: lightcoral;
color : white;
outline: none;
font-size: 32px;
margin: 16px 0;
cursor: pointer;
}
</style>
</head>
<body>
<button class="tag">Find a rabbit</button>
<img src="img/carrot.png" alt="carrot">
<img src="img/carrot.png" alt="carrot">
<img src="img/carrot.png" alt="carrot">
<img src="img/carrot.png" alt="carrot">
<img src="img/carrot.png" alt="carrot">
<img src="img/carrot.png" alt="carrot">
<img id= "rabbit" src="img/rabbit.png" alt="rabbit">
<img src="img/carrot.png" alt="carrot">
<img src="img/carrot.png" alt="carrot">
<img src="img/carrot.png" alt="carrot" >
<script>
const button = document.querySelector('button');
const rabbit = document.querySelector('#rabbit');
button.addEventListener('click', () => {
rabbit.scrollIntoView({behavior: 'smooth', block: 'center'});
});
</script>
</body>
</html>
scrollIntoView()
Opitonal
-behavior Optional
전환에니메이션을 정의.
"auto", "smooth"중 하나 선택. 기본값은 "auto".
-block Optional
수직 정렬을 정의
"start", "center", "end", "nearest"중 하나 선택. 기본값은 "start".
-inline Optional
수평 정렬을 정함
One of "start", "center", "end", "nearest"중 하나 선택. 기본값은 "nearest".
Author And Source
이 문제에 관하여(Q2) Window 토끼를 찾아라), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@delog_lee/Q2-Window-토끼를-찾아라저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)