Blame view

node_modules/element-ui/packages/theme-chalk/src/common/transition.scss 2.08 KB
2a09d1a4   liuqimichale   添加宜春 天水 宣化
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
  @import "var";
  
  .fade-in-linear-enter-active,
  .fade-in-linear-leave-active {
    transition: $--fade-linear-transition;
  }
  .fade-in-linear-enter,
  .fade-in-linear-leave,
  .fade-in-linear-leave-active {
    opacity: 0;
  }
  
  .el-fade-in-linear-enter-active,
  .el-fade-in-linear-leave-active {
    transition: $--fade-linear-transition;
  }
  .el-fade-in-linear-enter,
  .el-fade-in-linear-leave,
  .el-fade-in-linear-leave-active {
    opacity: 0;
  }
  
  .el-fade-in-enter-active,
  .el-fade-in-leave-active {
    transition: all .3s cubic-bezier(.55,0,.1,1);
  }
  .el-fade-in-enter,
  .el-fade-in-leave-active {
    opacity: 0;
  }
  
  .el-zoom-in-center-enter-active,
  .el-zoom-in-center-leave-active {
    transition: all .3s cubic-bezier(.55,0,.1,1);
  }
  .el-zoom-in-center-enter,
  .el-zoom-in-center-leave-active {
    opacity: 0;
    transform: scaleX(0);
  }
  
  .el-zoom-in-top-enter-active,
  .el-zoom-in-top-leave-active {
    opacity: 1;
    transform: scaleY(1);
    transition: $--md-fade-transition;
    transform-origin: center top;
  }
  .el-zoom-in-top-enter,
  .el-zoom-in-top-leave-active {
    opacity: 0;
    transform: scaleY(0);
  }
  
  .el-zoom-in-bottom-enter-active,
  .el-zoom-in-bottom-leave-active {
    opacity: 1;
    transform: scaleY(1);
    transition: $--md-fade-transition;
    transform-origin: center bottom;
  }
  .el-zoom-in-bottom-enter,
  .el-zoom-in-bottom-leave-active {
    opacity: 0;
    transform: scaleY(0);
  }
  
  .el-zoom-in-left-enter-active,
  .el-zoom-in-left-leave-active {
    opacity: 1;
    transform: scale(1, 1);
    transition: $--md-fade-transition;
    transform-origin: top left;
  }
  .el-zoom-in-left-enter,
  .el-zoom-in-left-leave-active {
    opacity: 0;
    transform: scale(.45, .45);
  }
  
  .collapse-transition {
    transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, 0.3s padding-bottom ease-in-out;
  }
  .horizontal-collapse-transition {
    transition: 0.3s width ease-in-out, 0.3s padding-left ease-in-out, 0.3s padding-right ease-in-out;
  }
  
  .el-list-enter-active,
  .el-list-leave-active {
    transition: all 1s;
  }
  .el-list-enter, .el-list-leave-active {
    opacity: 0;
    transform: translateY(-30px);
  }
  
  .el-opacity-transition {
    transition: opacity .3s cubic-bezier(.55,0,.1,1);
  }