From d82f1fad3e576833ab3d24ec2fe2c279cbb5aa6b Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 18 Mar 2022 17:30:30 +0800
Subject: [PATCH] 移动端高度调整及样式修改
---
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