43 lines
787 B
Plaintext
43 lines
787 B
Plaintext
/* FloatingFanMenu.css */
|
|
|
|
@keyframes menuItemPop {
|
|
0% {
|
|
opacity: 0;
|
|
transform: scale(0) rotate(-180deg);
|
|
}
|
|
70% {
|
|
opacity: 1;
|
|
transform: scale(1.1) rotate(-10deg);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: scale(1) rotate(0deg);
|
|
}
|
|
}
|
|
|
|
/* 悬停效果 */
|
|
.menu-item:hover {
|
|
transform: scale(1.1) !important;
|
|
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
|
|
transition: all 0.2s ease !important;
|
|
}
|
|
.adm-floating-bubble-button {
|
|
z-index: 999;
|
|
width: 72px;
|
|
height: 72px;
|
|
overflow: visible;
|
|
.cat {
|
|
position: absolute;
|
|
width: 70px;
|
|
font-size: 12px;
|
|
|
|
bottom: -10px;
|
|
background: rgba(255, 204, 199, 1);
|
|
padding: 4px 0px;
|
|
border-radius: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
}
|