Skip to content

Instantly share code, notes, and snippets.

@cursorial
Forked from anonymous/snowfall-animation.css
Created November 30, 2016 15:00
Show Gist options
  • Save cursorial/0bcc8664fea21c709c87f7cd1e24462d to your computer and use it in GitHub Desktop.
Save cursorial/0bcc8664fea21c709c87f7cd1e24462d to your computer and use it in GitHub Desktop.
@keyframes snowfall {
0% {
top: -40px;
}
25% {
top: 250px;
left: 100px;
}
50% {
top: 500px;
left: -100px;
}
100% {
top: 1000px;
left: 0px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment