marcusshepp
5/6/2016 - 5:46 PM

css animations

css animations

.foo{
  animation: foo_ani 1s;
}

@keyframes foo_ani{
    0%{
        background-color: #53E889;
    }
    100%{
        background-color: #AAF9C6;
    }
}