Ben Lin
2024-06-18 ebbd788fbb2c0b45d4473798efc57eec8ba74a25
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
// zoom-out
.zoom-out-enter-active,
.zoom-out-leave-active {
  transition:
    opacity 0.1 ease-in-out,
    transform 0.15s ease-out;
}
 
.zoom-out-enter-from,
.zoom-out-leave-to {
  transform: scale(0);
  opacity: 0;
}
 
// zoom-fade
.zoom-fade-enter-active,
.zoom-fade-leave-active {
  transition:
    transform 0.2s,
    opacity 0.3s ease-out;
}
 
.zoom-fade-enter-from {
  transform: scale(0.92);
  opacity: 0;
}
 
.zoom-fade-leave-to {
  transform: scale(1.06);
  opacity: 0;
}