Enhance SplashScreen with new logo transition effects
- Added a zoom-out effect for the logo when the login modal appears, improving visual engagement. - Updated CSS transitions for the logo container to create a smoother user experience during interactions.
This commit is contained in:
parent
35110905ff
commit
e5971ca921
BIN
neode-ui/public/assets/audio/enter-to-exit.mp3
Normal file
BIN
neode-ui/public/assets/audio/enter-to-exit.mp3
Normal file
Binary file not shown.
@ -477,6 +477,16 @@ onBeforeUnmount(() => {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
/* Wide logo zooms out towards user when login modal comes in */
|
||||
.splash-fade-leave-active .logo-container {
|
||||
transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
transform-origin: center center;
|
||||
}
|
||||
|
||||
.splash-fade-leave-to .logo-container {
|
||||
transform: scale(1.4);
|
||||
}
|
||||
|
||||
.fade-enter-active,
|
||||
.fade-leave-active {
|
||||
transition: opacity 0.5s ease;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user