zhangyong
2023-08-22 1353e87cb21a4032d585d7404bae9042f2ebcf08
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
100
101
102
103
104
105
106
@use 'sass:math';
 
@use 'mixins/mixins' as *;
@use 'mixins/var' as *;
@use 'common/var' as *;
 
:root {
  @include set-component-css-var('loading', $loading);
}
 
@include b(loading-parent) {
  @include m(relative) {
    position: relative !important;
  }
 
  @include m(hidden) {
    overflow: hidden !important;
  }
}
 
@include b(loading-mask) {
  position: absolute;
  z-index: 2000;
  background-color: getCssVar('mask-color');
  margin: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity getCssVar('transition-duration');
 
  @include when(fullscreen) {
    position: fixed;
 
    .#{$namespace}-loading-spinner {
      margin-top: calc(
        (0px - getCssVar('loading-fullscreen-spinner-size')) / 2
      );
 
      .circular {
        height: getCssVar('loading-fullscreen-spinner-size');
        width: getCssVar('loading-fullscreen-spinner-size');
      }
    }
  }
}
 
@include b(loading-spinner) {
  top: 50%;
  margin-top: calc((0px - getCssVar('loading-spinner-size')) / 2);
  width: 100%;
  text-align: center;
  position: absolute;
 
  .#{$namespace}-loading-text {
    color: getCssVar('color-primary');
    margin: 3px 0;
    font-size: 14px;
  }
 
  .circular {
    display: inline;
    height: getCssVar('loading-spinner-size');
    width: getCssVar('loading-spinner-size');
    animation: loading-rotate 2s linear infinite;
  }
 
  .path {
    animation: loading-dash 1.5s ease-in-out infinite;
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    stroke-width: 2;
    stroke: getCssVar('color-primary');
    stroke-linecap: round;
  }
 
  i {
    color: getCssVar('color-primary');
  }
}
 
.#{$namespace}-loading-fade-enter-from,
.#{$namespace}-loading-fade-leave-to {
  opacity: 0;
}
 
@keyframes loading-rotate {
  100% {
    transform: rotate(360deg);
  }
}
 
@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}