Created
July 1, 2019 06:58
-
-
Save withoutwax/f9b1177c45b5e13bd1918e4203078e6a to your computer and use it in GitHub Desktop.
Smooth Animation CSS
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
div { | |
-webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1); | |
transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1); | |
} | |
div::after { | |
-webkit-transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1); | |
transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1); | |
} | |
div:hover { | |
color: inherit; | |
margin-left: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment