sseeeedd icon indicating copy to clipboard operation
sseeeedd copied to clipboard

Allow basic view transitions

Open ffoodd opened this issue 1 year ago • 1 comments

As simple as:

@view-transition {
  navigation: auto;
}

Not baseline yet (missing Firefox) but doesn't cost anything.

See Adam Argyle 6 CSS snippets for 2025 post.

ffoodd avatar Jan 29 '25 09:01 ffoodd

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.

ffoodd avatar Jun 23 '25 15:06 ffoodd