웹퍼블리싱/css
css 무한애니메이션
developsigner
2019. 2. 22. 16:33
@keyframes changewidth {
from {
width: 0px;
}
to {
width: 50px;
}
}
.more_animation {
animation-duration: 1s;
animation-name: changewidth;
animation-iteration-count: infinite;
animation-direction: alternate;
}
반응형