:연습장:아바투르너마저/1/styles.css

아바투르너마저 (토론 | 기여)님의 2023년 10월 6일 (금) 17:18 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
#slider {
   overflow:hidden;
   position:relative;
   border:20px solid red;
   width:1440px;  
   height:200px;
}
.image-box {
   width:5280px; 
   height:100%;
   display:flex;
   flex-wrap:nowrap;
   animation: bannermove 5s linear infinite;
}
@keyframes bannermove {
  0% {
      transform: translate(0, 0);
  }
  100% {
      transform: translate(-50%, 0);
  }
}