From 3af1050525183a485ee9de50b9cc420281917417 Mon Sep 17 00:00:00 2001 From: unanmed <1319491857@qq.com> Date: Tue, 23 Apr 2024 22:32:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8A=A0=E5=BF=AB=E5=BC=B9=E5=B9=95?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E5=99=A8=E5=BC=80=E5=85=B3=E9=80=9F=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ui/danmakuEditor.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/danmakuEditor.vue b/src/ui/danmakuEditor.vue index 5c97ca6..b431ca0 100644 --- a/src/ui/danmakuEditor.vue +++ b/src/ui/danmakuEditor.vue @@ -288,7 +288,7 @@ function send() { function close() { mainDiv.classList.remove('danmaku-startup'); mainDiv.classList.add('danmaku-close'); - sleep(400).then(() => { + sleep(200).then(() => { fixedUi.close(props.num); }); } @@ -411,11 +411,11 @@ onUnmounted(() => { } .danmaku-startup { - animation: editor-startup 0.4s ease-out 0s 1 normal forwards running; + animation: editor-startup 0.2s ease-out 0s 1 normal forwards running; } .danmaku-close { - animation: editor-close 0.4s ease-in 0s 1 normal forwards running; + animation: editor-close 0.2s ease-in 0s 1 normal forwards running; } @keyframes editor-startup {