From b720ef016e08acb49f27fb64900fff62dc45ff55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Wed, 10 Sep 2025 16:55:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=83=85=E7=BB=AA=E5=A4=A7=E6=A8=A1=E5=9E=8B?= =?UTF-8?q?=E2=80=9C=E5=BC=80=E5=90=AF=E8=B4=A2=E8=BF=90=E2=80=9D=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E6=96=B0=E5=A2=9E=E5=91=BC=E5=90=B8=E6=95=88=E6=9E=9C?= =?UTF-8?q?=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Emotionsmodel.vue | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/views/Emotionsmodel.vue b/src/views/Emotionsmodel.vue index a09fcbf..167cc0e 100644 --- a/src/views/Emotionsmodel.vue +++ b/src/views/Emotionsmodel.vue @@ -201,6 +201,22 @@ const closeNoPermissionDialog = () => { border: none; cursor: pointer; transition: transform 0.3s ease; + animation: breathing 3s ease-in-out infinite; +} + +@keyframes breathing { + 0% { + transform: scale(1); + opacity: 0.8; + } + 50% { + transform: scale(1.1); + opacity: 1; + } + 100% { + transform: scale(1); + opacity: 0.8; + } } .btn-item:hover {