wwf
15 小时以前 a32100e31b93bc378b11ab93617a9c40b081ad70
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
<template>
  <div class="loading-content">
    <div class="loading-spinner">
      <div class="spinner-ring"></div>
      <div class="spinner-ring"></div>
      <div class="spinner-ring"></div>
    </div>
    <div class="loading-text">加载中...</div>
  </div>
</template>
 
<style>
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
 
.loading-content {
  text-align: center;
}
 
.loading-spinner {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}
 
.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: #007aff;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}
 
.spinner-ring:nth-child(1) {
  animation-delay: 0s;
}
 
.spinner-ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  animation-delay: 0.15s;
  border-top-color: #66b1ff;
}
 
.spinner-ring:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  animation-delay: 0.3s;
  border-top-color: #a0cfff;
}
 
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
 
.loading-text {
  font-size: 14px;
  color: #666;
  animation: pulse 1.5s ease-in-out infinite;
}
 
@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
 
</style>