Last active
July 26, 2025 16:33
-
-
Save chuckadams/d8eed8bdd2f0b5df216c6f8e861bda3e to your computer and use it in GitHub Desktop.
css view transition example
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
@view-transition { | |
navigation: auto; | |
} | |
::view-transition-group(*) { | |
animation-duration: 0.3s; | |
} |
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
@view-transition | |
navigation: auto; | |
} | |
::view-transition-old(root), | |
::view-transition-new(root) { | |
animation: fade 0.3s ease both; | |
} | |
@keyframes fade { | |
from { opacity: 0; } | |
to { opacity: 1; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment