Skip to content

Instantly share code, notes, and snippets.

@cp-sumi-k
Last active February 8, 2022 12:23
Show Gist options
  • Save cp-sumi-k/cc79ea7e424d800e0a63853cb6fbcc89 to your computer and use it in GitHub Desktop.
Save cp-sumi-k/cc79ea7e424d800e0a63853cb6fbcc89 to your computer and use it in GitHub Desktop.
<style scoped>
//animation in reverse
@keyframes scroll-reverse {
0% {
transform: translate(-1760px);
}
100% {
transform: translate(0px);
}
}
.grid-animation-reverse {
animation: scroll-reverse 5s linear infinite;
animation-play-state: paused;
}
.grid-animation-reverse-running {
animation-play-state: running;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment