Modernize app design with advanced animations and transitions#15
Merged
Modernize app design with advanced animations and transitions#15
Conversation
- Add sophisticated view transitions with named elements (header stays stable, main content slides in from right) - Implement stagger animations for dashboard cards and lists with fade-in-up effect - Add micro-interactions: button press effects, icon hover rotations, nav link hover transforms - Enhance card hover states with lift and glow effects (card-interactive class) - Improve spacing throughout the app with more generous padding/margins - Add scroll-triggered animation hook (useScrollAnimation) for timeline - Add chat message entry animation and empty state bounce animation - Improve MoodSelector with better hover/selected states and shadows - Add glassmorphism effects and focus ring utilities - Enhance modal animations with smoother transitions - Add pulse glow, shimmer, and float animations for decorative elements
Preview deployed |
Changed from scrollIntoView (which scrolls the entire page) to scrollTo on the chat container element. This prevents the header from being scrolled away when loading existing chat messages or receiving new ones.
Different pages have different header heights (home page vs PageHeader component vs timeline). Named view transitions tried to morph between them causing visual glitches. Now using simple page crossfade instead which works consistently across all page types.
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.
main content slides in from right)
hover transforms