Skip to content

Instantly share code, notes, and snippets.

@chuckadams
Last active July 26, 2025 16:33
Show Gist options
  • Save chuckadams/d8eed8bdd2f0b5df216c6f8e861bda3e to your computer and use it in GitHub Desktop.
Save chuckadams/d8eed8bdd2f0b5df216c6f8e861bda3e to your computer and use it in GitHub Desktop.
css view transition example
@view-transition {
navigation: auto;
}
::view-transition-group(*) {
animation-duration: 0.3s;
}
@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