CSS로 무한 스크롤 애니메이션 만들기 💥
내부에 6개의 div가 있는 컨테이너 만들기
<div class="container">
<div class="pink"></div>
<div class="blue"></div>
<div class="yellow"></div>
<div class="orange"></div>
<div class="purple"></div>
<div class="aqua"></div>
</div>
컨테이너에 간단한 스타일을 추가하고 div에 너비, 높이 및 다양한 색상을 지정합니다. 여기에서 이미지를 가질 수도 있습니다.
.container {
overflow: hidden;
display: flex;
height: 500px;
width: 1500px;
margin: 0 auto;
}
.container div {
height: 400px;
min-width: 300px;
margin-left: 100px;
}
.pink {
background-color: pink;
}
.blue {
background-color: blue;
}
.yellow {
background-color: yellow;
}
.orange {
background-color: orange;
}
.purple {
background-color: purple;
}
.aqua {
background-color: aqua;
}
키프레임 추가 -
@keyframes slide {
0% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(-1500px, 0, 0); /* The image width */
}
}
컨테이너에서 키프레임 애니메이션 사용
.container div {
height: 400px;
min-width: 300px;
margin-left: 100px;
animation: slide 15s linear infinite;
}
짜잔, 작동시키는 것은 이렇게 간단했습니다!
https://www.loom.com/share/a2339e51fcf942a99de46264190e3c94
이 미니 튜토리얼이 마음에 드셨기를 바랍니다. 다음 튜토리얼에서 만나요 ✌🏻
유용한 링크-
Code
Social links
Reference
이 문제에 관하여(CSS로 무한 스크롤 애니메이션 만들기 💥), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/avneesh0612/create-an-infinite-scrolling-animation-with-css-3a3i텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)