From 557c6a0552f952b58d2d748c094800bb767b49f1 Mon Sep 17 00:00:00 2001
From: liuyg <liuyg@qq.com>
Date: Sat, 19 Mar 2022 16:25:05 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.105:10010/r/school-web

---
 src/styles/pcpage/dc-ui.scss |   35 +++++++++++++++++++++++++++++++++++
 1 files changed, 35 insertions(+), 0 deletions(-)

diff --git a/src/styles/pcpage/dc-ui.scss b/src/styles/pcpage/dc-ui.scss
index 6bc3d01..c215072 100644
--- a/src/styles/pcpage/dc-ui.scss
+++ b/src/styles/pcpage/dc-ui.scss
@@ -30,4 +30,39 @@
         fill: #2196f3;
     }
 
+    .div-icon {
+        .tag-entitys-box {
+            animation: moveLayerIcon 0.5s linear 0;
+        }
+
+        .tag-entitys-box:hover {
+            animation: moveLayerIcon 0.5s linear infinite;
+        }
+    }
+
+
+}
+
+@keyframes moveLayerIcon {
+    0% {
+        transform: translateY(0px);
+    }
+
+    25% {
+        transform: translateY(-10px);
+    }
+
+    50% {
+        transform: translateY(0px);
+    }
+
+    75% {
+        transform: translateY(-10px);
+    }
+
+
+    100% {
+        transform: translateY(0px);
+    }
+
 }
\ No newline at end of file

--
Gitblit v1.9.3