Blame view

styles/components/spin.less 1.22 KB
7fa943eb   梁灏   init
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
  @spin-prefix-cls: ~"@{css-prefix}spin";
  @spin-dot-size-small: 12px;
  @spin-dot-size: 20px;
  @spin-dot-size-large: 32px;
  
  .@{spin-prefix-cls} {
      color: @primary-color;
      vertical-align: middle;
      text-align: center;
  
      &-dot {
          position: relative;
          display: block;
          border-radius: 50%;
          background-color: @primary-color;
          .square(@spin-dot-size);
          .animation(ani-spin-bounce 1s 0s ease-in-out infinite);
      }
  
      &-large &-dot {
          .square(@spin-dot-size-large);
      }
  
      &-small &-dot {
          .square(@spin-dot-size-small);
      }
  
      &-fix {
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          z-index: @zindex-spin;
          display: table;
          .square(100%);
          background-color: #fff;
      }
  
      &-fix &-main {
          display: table-cell;
          vertical-align: middle;
          .square(inherit);
      }
  
      &-fix &-dot {
          display: inline-block;
      }
  
      &-text,
      &-show-text &-dot {
          display: none;
      }
  
      &-show-text &-text {
          display: block;
      }
  }
  
  @keyframes ani-spin-bounce {
      0% {
          .transform(scale(0));
      }
  
      100% {
          .transform(scale(1));
          opacity: 0;
      }
  }