domchristie / turn

📖 Animate page transitions in Turbo Drive apps
https://domchristie.github.io/turn/
MIT License
167 stars 6 forks source link

Temporary flash of new content #13

Open domchristie opened 1 year ago

domchristie commented 1 year ago

When using non-view-transition animations alone, there's a temporary flash of the new content before enter. Current solution is to use v2.1.0 (where view transitions are disabled by default)

domchristie commented 1 year ago

Current solution is to use v2.1.0 (where view transitions are disabled by default)

Or ensure that the target elements aren't visible during the view transition:

.turn-view-transitions.turn-transition [data-turn-enter],
.turn-view-transitions.turn-before-transition [data-turn-enter] {
  opacity: 0;
}