@keyframes fade {
from {
opacity: .5;
}
to {
opacity: 1;
}
}
Thenwecouldcombinethemaspartofasingleanimation:
.pulse-and-fade {
animation: pulse 500ms, fade 500ms;
}
Animation Properties
Thoughtheanimationpropertyisshorter,sometimeslonghandpropertiesare
clearer.LonghandanimationpropertiesarelistedinTable5.5.
212 CSS Master