From 1bbdd15606216ee81810d8c3c670e71f83bd6b7e Mon Sep 17 00:00:00 2001 From: Parsons Date: Mon, 30 Sep 2024 00:53:33 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=B5=90=E7=AE=97=E7=95=AB=E9=9D=A2?= =?UTF-8?q?=EF=BC=8C=E7=AC=AC=E4=B8=80=E5=90=8D=E7=9A=84=E5=85=89=E8=8A=92?= =?UTF-8?q?=E6=9C=83=E8=BD=89=E5=8B=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/GameOverModal.vue | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/components/GameOverModal.vue b/src/components/GameOverModal.vue index d9d589f..9abb509 100644 --- a/src/components/GameOverModal.vue +++ b/src/components/GameOverModal.vue @@ -144,6 +144,7 @@ const otherPlayers = computed(() => { background-repeat: no-repeat; background-position: center; background-size: contain; + animation: animate-shine 5s linear infinite; } .character { @@ -247,6 +248,16 @@ const otherPlayers = computed(() => { } } + @keyframes animate-shine { + 0% { + transform: rotate(0deg); + } + + 100% { + transform: rotate(360deg); + } + } + .game-over-modal-container { position: relative;