From 41c9d2f1ee55a89785b0e4f9a7c31886179a1f93 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Wed, 3 Sep 2025 18:54:27 +0200 Subject: [PATCH] feat: adjust transition delays and easing functions for improved animation timing --- app/components/chat/Main.vue | 2 +- app/pages/index.vue | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/chat/Main.vue b/app/components/chat/Main.vue index 31e48c9..f534265 100644 --- a/app/components/chat/Main.vue +++ b/app/components/chat/Main.vue @@ -33,7 +33,7 @@ const { t } = useI18n() y: 0, scale: 1, transition: { - delay: 400, + delay: 300, ease: 'linear', }, }" diff --git a/app/pages/index.vue b/app/pages/index.vue index 52e2095..cd9b4f0 100644 --- a/app/pages/index.vue +++ b/app/pages/index.vue @@ -33,8 +33,8 @@ watch( y: 0, scale: 1, transition: { - delay: 1600, - ease: 'easeOut', + delay: 1800, + ease: 'easeInOut', }, }" :active="messages.length > 0" @@ -53,7 +53,7 @@ watch( y: 0, scale: 1, transition: { - delay: 800, + delay: 900, ease: 'easeOut', }, }"