[6.x] Use entry animations and a base view transition to smooth out Vue loading in#12454
Merged
jasonvarga merged 56 commits intomasterfrom Sep 17, 2025
Merged
[6.x] Use entry animations and a base view transition to smooth out Vue loading in#12454jasonvarga merged 56 commits intomasterfrom
jasonvarga merged 56 commits intomasterfrom
Conversation
…sed on the height of every entry
…ect based on the height of every entry
…n the header when browser caching is on
…ent langauge combobox arrow from collapsing in the header when browser caching is on
…ge load - tweak timing
…y reflect what it does (and hopefully make Jason happier)
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The CP uses a lot of Vue, which causes some jarring layout pop-in.
This PR tries to make things a lot smoother with a mixture of a base view-transition, which mostly handles the exit state (things fading out), mixed with an opacity transition so things "fade in" rather than pop in.
I've used very low timing values, so the page should still feel very quick to load, and you should feel the animation rather than see it.
Some things to note:
v-cloakfrom the main container and instead selectively using it on components that were heavier to load. This means the main container that was previously cloaked is no longer blank any more in between pages@starting-styleso we can animate on loadsibling-index()function to stagger animations by a very tiny amount so the load-in feels a little more natural. This is a progressive enhancement