Last active
February 8, 2022 12:22
-
-
Save cp-sumi-k/1ebd81aeeb92ae3a10b7bd90ccfba3ce to your computer and use it in GitHub Desktop.
https://blog.canopas.com/animations-with-css-and-vue-transitions-fdb53dbb21e7 - continous-horizontal-animation-7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style scoped> | |
.grid-animation:hover, | |
.grid-animation-reverse:hover { | |
animation-play-state: paused; | |
} | |
.elements:hover { | |
cursor: pointer; | |
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2) !important; | |
transform: scale(0.97); | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment