Created
February 6, 2021 15:11
-
-
Save djmtype/736029bafbddfddebe35199ce1e2e6ba to your computer and use it in GitHub Desktop.
This file contains 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
@keyframes smoothscroll1 { | |
from, | |
to { | |
scroll-behavior: smooth; | |
} | |
} | |
@keyframes smoothscroll2 { | |
from, | |
to { | |
scroll-behavior: smooth; | |
} | |
} | |
html { | |
animation: smoothscroll1 1s; | |
} | |
html:focus-within { | |
animation-name: smoothscroll2; | |
scroll-behavior: smooth; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment