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 { diff --git a/src/views/homePage.vue b/src/views/homePage.vue index dac4135..838322e 100644 --- a/src/views/homePage.vue +++ b/src/views/homePage.vue @@ -1698,13 +1698,13 @@ onUnmounted(() => {