buttron
Version:
A whole new way to button
21 lines (20 loc) • 792 B
CSS
.test {
animation-name: tlOne, tlTwo, tlThree;
animation-duration: 1s, 1s, 2s;
animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1), ease-in, cubic-bezier(0.42, 0, 0.58, 1);
animation-iteration-count: 10, 1, 1;
animation-delay: 0s, 0s, 0.5s;
animation-direction: normal, normal, normal;
animation-fill-mode: none, none, none;
animation-play-state: running, paused, paused;
}
.test {
animation-name: tlOne, tlTwo, tlThree;
animation-duration: 1s, 1s, 2s;
animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1), ease-in, cubic-bezier(0.42, 0, 0.58, 1);
animation-iteration-count: 10, 1, 1;
animation-delay: 0s, 0s, 0.5s;
animation-direction: normal, normal, normal;
animation-fill-mode: none, none, none;
animation-play-state: running, paused, paused;
}