sseeeedd
sseeeedd copied to clipboard
Allow basic view transitions
As simple as:
@view-transition {
navigation: auto;
}
Not baseline yet (missing Firefox) but doesn't cost anything.
Improved to take user preference into account:
@media screen and (prefers-reduced-motion: no-preference) {
@view-transition {
navigation: auto;
}
}
See Ariel Salminen's View transitions for any website blog post.