반응형
css 만으로 자연 스럽게 무한 반복되는 이미지 스크롤 입니다.
html
<div>
<ul>
<li class="item" style=" background-image: url(https://t1.daumcdn.net/cfile/tistory/994C47365B166C7303);"></li>
<li class="item" style="background-image: url(https://t1.daumcdn.net/cfile/tistory/990C04505B166C7319);"></li>
<li class="item" style="background-image: url(https://t1.daumcdn.net/cfile/tistory/994C47365B166C7303);"></li>
</ul>
</div>
css
body {
margin: 0 auto!important;
background-color: #e9ecef;
max-width: 414px;
}
div {
overflow: hidden;
}
ul {
font-size:0px;
min-height: 177px;
white-space: nowrap;
padding:0px;
}
.item {
width:100%;
overflow: hidden;
display: inline-block;
height: 177px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
animation: moveSlideshow 5s linear infinite;
animation: moveSlideshow 5s linear infinite;
animation: moveSlideshow 5s linear infinite;
}
@keyframes moveSlideshow {
100% {
transform: translateX(-200%);
}
}
반응형
'스크립트' 카테고리의 다른 글
jquery ajax ie no transport error (0) | 2018.07.17 |
---|---|
윈도우 netstat grep wc 포트 커넥션 확인 (0) | 2018.07.09 |
리눅스 프로세스 생성 스크립트 (0) | 2018.06.29 |
리눅스 OS 모니터링 쉘 스크립트. cpu, memory, disk 사용률 (2) | 2018.06.21 |
java compile script 자바 컴파일 스크립트 (0) | 2018.04.05 |
javascript jquery each break (0) | 2018.04.03 |
자바스크립트 javascript uuid (0) | 2018.03.21 |
자바스크립트 한영변환 한영전환 (0) | 2018.02.07 |