buttron
Version:
A whole new way to button
101 lines (100 loc) • 1.65 kB
CSS
@-moz-keyframes tlOne {
50% {
background: #008000;
}
}
@-webkit-keyframes tlOne {
50% {
background: #008000;
}
}
@-o-keyframes tlOne {
50% {
background: #008000;
}
}
@keyframes tlOne {
50% {
background: #008000;
}
}
@-moz-keyframes tlTwo {
50% {
color: #008000;
}
}
@-webkit-keyframes tlTwo {
50% {
color: #008000;
}
}
@-o-keyframes tlTwo {
50% {
color: #008000;
}
}
@keyframes tlTwo {
50% {
color: #008000;
}
}
.test {
animation-name: tlOne, tlTwo;
animation-duration: 0.5s, 0.5s;
animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1);
animation-iteration-count: 1, 1;
animation-delay: 0s, 0s;
animation-direction: normal, normal;
animation-fill-mode: none, none;
animation-play-state: running, running;
}
@-moz-keyframes tlOne {
50% {
background: #008000;
}
}
@-webkit-keyframes tlOne {
50% {
background: #008000;
}
}
@-o-keyframes tlOne {
50% {
background: #008000;
}
}
@keyframes tlOne {
50% {
background: #008000;
}
}
@-moz-keyframes tlTwo {
50% {
color: #008000;
}
}
@-webkit-keyframes tlTwo {
50% {
color: #008000;
}
}
@-o-keyframes tlTwo {
50% {
color: #008000;
}
}
@keyframes tlTwo {
50% {
color: #008000;
}
}
.test {
animation-name: tlOne, tlTwo;
animation-duration: 0.5s, 0.5s;
animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1);
animation-iteration-count: 1, 1;
animation-delay: 0s, 0s;
animation-direction: normal, normal;
animation-fill-mode: none, none;
animation-play-state: running, running;
}