123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- ion-item {
- font-size: 24px;
- transition: transform 0.3s;
- ion-label {
- font-size: 30px;
- }
- &.go {
- background-color: #FFD700; /* 金色 */
- }
- &.chess {
- background-color: #FF69B4; /* 粉色 */
- }
- &.junqi {
- background-color: #87CEEB; /* 天蓝色 */
- }
- &.more {
- background-color: #32CD32; /* 青绿色 */
- }
- &:hover {
- transform: scale(1.1);
- }
- }
- .circles {
- display: flex;
- justify-content: center;
- margin-top: 20px;
-
- .circle {
- width: 20px;
- height: 20px;
- background-color: #000;
- border-radius: 50%;
- margin: 0 10px;
- animation: pulse 2s infinite;
- }
- .circle:nth-child(2) {
- animation-delay: 0.4s;
- }
- .circle:nth-child(3) {
- animation-delay: 0.8s;
- }
- }
- @keyframes pulse {
- 0% {
- transform: scale(1);
- }
- 50% {
- transform: scale(1.5);
- }
- 100% {
- transform: scale(1);
- }
- }
|