Skip to content

Instantly share code, notes, and snippets.

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