@keyframes test {
0% {
width: 100px;
}
50% {
width: 150px;
}
100% {
width: 100px;
}
}
div.test {
animation: test 1s ease 0s infinite;
}
@keyframes test {
0% {
width: 100px;
}
100% {
width: 150px;
}
}
div.test {
animation: test 1s ease 0s infinite alternate;
}