I'm wondering how I can have the following two animations happen on an element simultaneously:
@keyframes BackgroundSnowfall{
from {transform: translate(0px, 0px);}
to {transform: translate(0px, 936px);}
}
@keyframes shuffle{
0% {transform: translate(0px);}
33% {transform: translate(20px);}
66% {transform: translate(-20px)}
100% {transform: translate(0px)}
}
Both the animations are being run with a very wide difference in their duration (about a 55 second gap), so I'd rather not have to do the math and create a long single animation keyframes to incorporate them both.