스크롤 애니메이션 | 자바스크립트
13805 단어 tutorialwebdevbeginnersjavascript
이 튜토리얼에서 알 수 있듯이 한 블록은 오른쪽에서, 다른 블록은 왼쪽에서 옵니다!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scroll Animation</title>
<link rel="stylesheet" href="style.css">
<script defer src="app.js"></script>
</head>
<body>
<h1>Scroll to See 👀 the Animation</h1>
<div class="box blue show">
<h2>content</h2>
</div>
<div class="box red">
<h2>content</h2>
</div>
<div class="box yellow">
<h2>content</h2>
</div>
<div class="box green">
<h2>content</h2>
</div>
<div class="box blue">
<h2>content</h2>
</div>
<div class="box red">
<h2>content</h2>
</div>
<div class="box yellow">
<h2>content</h2>
</div>
<div class="box green">
<h2>content</h2>
</div>
<div class="box blue">
<h2>content</h2>
</div>
<div class="box red">
<h2>content</h2>
</div>
<div class="box yellow">
<h2>content</h2>
</div>
<div class="box green">
<h2>content</h2>
</div>
</body>
</html>
CSS
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
* {
box-sizing: border-box;
}
/*Color*/
.blue {
--clr: #4285f4;
}
.red {
--clr: #db4437;
}
.yellow {
--clr: #f4b400;
}
.green {
--clr: #0f9d58;
}
body {
background-color: #636e72;
font-family: "Roboto", sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 0;
overflow-x: hidden;
}
h1 {
color: rgb(226, 226, 226);
text-transform: uppercase;
margin: 30px;
text-shadow: 2px 2px 10px #000;
}
.box {
background-color: var(--clr);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
width: 400px;
height: 200px;
margin: 10px;
border-radius: 20px;
box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.3);
transform: translateX(400%);
transition: transform 0.4s ease;
}
.box:nth-of-type(even) {
transform: translateX(-400%);
}
.box.show {
transform: translateX(0);
}
.box h2 {
font-size: 45px;
text-shadow: 2px 2px 3px #000;
}
자바스크립트
const boxes = document.querySelectorAll('.box');
window.addEventListener('scroll', checkboxes);
checkboxes();
function checkboxes() {
const triggerBottom = window.innerHeight / 5 * 4;
boxes.forEach((box) => {
const boxTop = box.getBoundingClientRect().top;
if (boxTop < triggerBottom) {
box.classList.add('show');
} else {
box.classList.remove('show');
}
});
}
🛴 더 많은 정보를 원하시면 저를 팔로우하세요:
📺YouTube: https://bit.ly/3oBQbc0
페이스북: https://bit.ly/3cp2S5W
인스타그램: https://bit.ly/3Ihh2EB
Reference
이 문제에 관하여(스크롤 애니메이션 | 자바스크립트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/robsonmuniz16/scroll-animation-javascript-10k2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)