tanghaolin
2022-07-27 fd4d1d9296ba620de15b47bd1d58383d46ecb626
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@import '../../style/icon.wxss';
@import '../../style/main.wxss';
@import '../../style/animation.wxss';
 
.day {
  width: 160rpx;
  height: 80rpx;
  align-items: center;
  justify-content: center;
  display: flex;
}
 
.icon_style {
  width: 70rpx;
  height: 70rpx;
  background: #16b5cb;
  color: #ffffff;
  text-align: center;
  line-height: 70rpx;
  border-radius: 50%;
  font-size: 52rpx;
}
 
.icon_rotate {
  animation: myRotate 1s ease-in 1;
}
 
@keyframes myRotate {
  from {
    transform: rotate(0deg);
  }
 
  to {
    transform: rotate(360deg);
  }
}