|
@@ -1,23 +1,298 @@
|
|
.loading-next {
|
|
.loading-next {
|
|
- position: fixed;
|
|
|
|
- top: 0;
|
|
|
|
- left: 0;
|
|
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
height: 100%;
|
|
- background: rgba(255, 255, 255, 0.95);
|
|
|
|
- z-index: 9999;
|
|
|
|
-
|
|
|
|
- .loading-next-box {
|
|
|
|
- display: flex;
|
|
|
|
- justify-content: center;
|
|
|
|
- align-items: center;
|
|
|
|
- height: 100%;
|
|
|
|
-
|
|
|
|
- .loading-next-box-warp {
|
|
|
|
- .loading-gif {
|
|
|
|
- width: 300px;
|
|
|
|
- height: 300px;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+}
|
|
|
|
+.loading-next .loader-container {
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 50%;
|
|
|
|
+ left: 50%;
|
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
|
+}
|
|
|
|
+.loading-next .loading-next-box-warp {
|
|
|
|
+ width: 80px;
|
|
|
|
+ height: 80px;
|
|
|
|
+}
|
|
|
|
+.loading-next .loading-next-box-warp .loading-next-box-item {
|
|
|
|
+ width: 33.333333%;
|
|
|
|
+ height: 33.333333%;
|
|
|
|
+ background: var(--el-color-primary);
|
|
|
|
+ float: left;
|
|
|
|
+ animation: loading-next-animation 1.2s infinite ease;
|
|
|
|
+ border-radius: 1px;
|
|
|
|
+}
|
|
|
|
+.loading-next .loading-next-box-warp .loading-next-box-item:nth-child(7) {
|
|
|
|
+ animation-delay: 0s;
|
|
|
|
+}
|
|
|
|
+.loading-next .loading-next-box-warp .loading-next-box-item:nth-child(4),
|
|
|
|
+.loading-next .loading-next-box-warp .loading-next-box-item:nth-child(8) {
|
|
|
|
+ animation-delay: 0.1s;
|
|
|
|
+}
|
|
|
|
+.loading-next .loading-next-box-warp .loading-next-box-item:nth-child(1),
|
|
|
|
+.loading-next .loading-next-box-warp .loading-next-box-item:nth-child(5),
|
|
|
|
+.loading-next .loading-next-box-warp .loading-next-box-item:nth-child(9) {
|
|
|
|
+ animation-delay: 0.2s;
|
|
|
|
+}
|
|
|
|
+.loading-next .loading-next-box-warp .loading-next-box-item:nth-child(2),
|
|
|
|
+.loading-next .loading-next-box-warp .loading-next-box-item:nth-child(6) {
|
|
|
|
+ animation-delay: 0.3s;
|
|
|
|
+}
|
|
|
|
+.loading-next .loading-next-box-warp .loading-next-box-item:nth-child(3) {
|
|
|
|
+ animation-delay: 0.4s;
|
|
|
|
+}
|
|
|
|
+@keyframes loading-next-animation {
|
|
|
|
+ 0%,
|
|
|
|
+ 70%,
|
|
|
|
+ 100% {
|
|
|
|
+ transform: scale3D(1, 1, 1);
|
|
|
|
+ }
|
|
|
|
+ 35% {
|
|
|
|
+ transform: scale3D(0, 0, 1);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+/* html {
|
|
|
|
+ background-color: #333;
|
|
|
|
+ }
|
|
|
|
+ h1 {
|
|
|
|
+ font-family: Marvel;
|
|
|
|
+ font-size: 50pt;
|
|
|
|
+ color: #fff;
|
|
|
|
+ margin-top: 10px;
|
|
|
|
+ margin-bottom: 10px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ } */
|
|
|
|
+ .loader {
|
|
|
|
+ position: relative;
|
|
|
|
+ width: 50px;
|
|
|
|
+ height: 50px;
|
|
|
|
+ margin: 10px;
|
|
|
|
+ }
|
|
|
|
+ .loader-container {
|
|
|
|
+ display: inline-block;
|
|
|
|
+ height: 150px;
|
|
|
|
+ width: 200px;
|
|
|
|
+ }
|
|
|
|
+ .container-of-loaders {
|
|
|
|
+ width: 800px;
|
|
|
|
+ margin-left: auto;
|
|
|
|
+ margin-right: auto;
|
|
|
|
+ }
|
|
|
|
+ @media screen and (max-width: 810px) {
|
|
|
|
+ .container-of-loaders {
|
|
|
|
+ width: 600px;
|
|
|
|
+ }
|
|
|
|
+ .no-7 {
|
|
|
|
+ margin-left: 100px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ @media screen and (max-width: 623px) {
|
|
|
|
+ .container-of-loaders {
|
|
|
|
+ width: 400px;
|
|
|
|
+ }
|
|
|
|
+ .no-7 {
|
|
|
|
+ margin-left: 0px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ @media screen and (max-width: 423px) {
|
|
|
|
+ .container-of-loaders {
|
|
|
|
+ width: 200px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .one {
|
|
|
|
+ background-color: rgba(255, 255, 255, 0.6);
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ animation: loader1Animation 1s ease-in-out infinite;
|
|
|
|
+ margin-left: auto;
|
|
|
|
+ margin-right: auto;
|
|
|
|
+ margin-top: 50px;
|
|
|
|
+ }
|
|
|
|
+ .one:before {
|
|
|
|
+ content: "";
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 5px;
|
|
|
|
+ left: 19px;
|
|
|
|
+ width: 12px;
|
|
|
|
+ height: 12px;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ background-color: #333;
|
|
|
|
+ }
|
|
|
|
+ @keyframes loader1Animation {
|
|
|
|
+ 0% {
|
|
|
|
+ transform: rotate(0deg);
|
|
|
|
+ }
|
|
|
|
+ 100% {
|
|
|
|
+ transform: rotate(360deg);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .two {
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ border: solid transparent 5px;
|
|
|
|
+ border-top: solid #fff 5px;
|
|
|
|
+ border-left: solid #fff 5px;
|
|
|
|
+ animation: loader2Animation 1s linear infinite;
|
|
|
|
+ margin-left: auto;
|
|
|
|
+ margin-right: auto;
|
|
|
|
+ margin-top: 45px;
|
|
|
|
+ }
|
|
|
|
+ @keyframes loader2Animation {
|
|
|
|
+ 0% {
|
|
|
|
+ transform: rotate(0deg);
|
|
|
|
+ }
|
|
|
|
+ 100% {
|
|
|
|
+ transform: rotate(360deg);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .three {
|
|
|
|
+ height: 100px;
|
|
|
|
+ width: 100px;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ border: solid transparent 10px;
|
|
|
|
+ border-top: solid #409eff 10px;
|
|
|
|
+ border-left: solid #409eff 10px;
|
|
|
|
+ animation: loader3Animation 2s linear infinite;
|
|
|
|
+ margin-left: auto;
|
|
|
|
+ margin-right: auto;
|
|
|
|
+ margin-top: 15px;
|
|
|
|
+ }
|
|
|
|
+ .three:before {
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 20px;
|
|
|
|
+ left: 20px;
|
|
|
|
+ content: "";
|
|
|
|
+ width: 40px;
|
|
|
|
+ height: 40px;
|
|
|
|
+ border: solid transparent 10px;
|
|
|
|
+ border-top: solid #409eff 10px;
|
|
|
|
+ border-left: solid #409eff 10px;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ animation: loader3AnimationBefore 1.5s linear infinite;
|
|
|
|
+ }
|
|
|
|
+ .three:after {
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 5px;
|
|
|
|
+ left: 5px;
|
|
|
|
+ content: "";
|
|
|
|
+ width: 70px;
|
|
|
|
+ height: 70px;
|
|
|
|
+ border: solid transparent 10px;
|
|
|
|
+ border-top: solid #409eff 10px;
|
|
|
|
+ border-left: solid #409eff 10px;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ animation: loader3AnimationAfter 1.5s linear infinite;
|
|
|
|
+ }
|
|
|
|
+ @keyframes loader3Animation {
|
|
|
|
+ 0% {
|
|
|
|
+ transform: rotate(0deg);
|
|
|
|
+ }
|
|
|
|
+ 100% {
|
|
|
|
+ transform: rotate(360deg);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ @keyframes loader3AnimationBefore {
|
|
|
|
+ 0% {
|
|
|
|
+ transform: rotate(0deg);
|
|
|
|
+ }
|
|
|
|
+ 100% {
|
|
|
|
+ transform: rotate(360deg);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ @keyframes loader3AnimationAfter {
|
|
|
|
+ 0% {
|
|
|
|
+ transform: rotate(360deg);
|
|
|
|
+ }
|
|
|
|
+ 100% {
|
|
|
|
+ transform: rotate(-360deg);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .four {
|
|
|
|
+ margin-top: 70px;
|
|
|
|
+ width: 10px;
|
|
|
|
+ height: 10px;
|
|
|
|
+ background-color: #fff;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ animation: loader4Animation 1s linear infinite;
|
|
|
|
+ margin-left: 80px;
|
|
|
|
+ }
|
|
|
|
+ @keyframes loader4Animation {
|
|
|
|
+ 0% {
|
|
|
|
+ background-color: rgba(255, 255, 255, 1);
|
|
|
|
+ box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 0.67),
|
|
|
|
+ 30px 0px 0px 0px rgba(255, 255, 255, 0.33);
|
|
|
|
+ }
|
|
|
|
+ 17% {
|
|
|
|
+ background-color: rgba(255, 255, 255, 0.67);
|
|
|
|
+ box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 1),
|
|
|
|
+ 30px 0px 0px 0px rgba(255, 255, 255, 0.67);
|
|
|
|
+ }
|
|
|
|
+ 33% {
|
|
|
|
+ background-color: rgba(255, 255, 255, 0.33);
|
|
|
|
+ box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 0.67),
|
|
|
|
+ 30px 0px 0px 0px rgba(255, 255, 255, 1);
|
|
|
|
+ }
|
|
|
|
+ 50% {
|
|
|
|
+ background-color: rgba(255, 255, 255, 0);
|
|
|
|
+ box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 0.33),
|
|
|
|
+ 30px 0px 0px 0px rgba(255, 255, 255, 0.67);
|
|
|
|
+ }
|
|
|
|
+ 67% {
|
|
|
|
+ background-color: rgba(255, 255, 255, 0.33);
|
|
|
|
+ box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 0),
|
|
|
|
+ 30px 0px 0px 0px rgba(255, 255, 255, 0.33);
|
|
|
|
+ }
|
|
|
|
+ 83% {
|
|
|
|
+ background-color: rgba(255, 255, 255, 0.67);
|
|
|
|
+ box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 0.33),
|
|
|
|
+ 30px 0px 0px 0px rgba(255, 255, 255, 0);
|
|
|
|
+ }
|
|
|
|
+ 100% {
|
|
|
|
+ background-color: rgba(255, 255, 255, 1);
|
|
|
|
+ box-shadow: 15px 0px 0px 0px rgba(255, 255, 255, 0.67),
|
|
|
|
+ 30px 0px 0px 0px rgba(255, 255, 255, 0.33);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .five {
|
|
|
|
+ width: 100px;
|
|
|
|
+ height: 100px;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ border: solid #fff 4px;
|
|
|
|
+ margin-left: auto;
|
|
|
|
+ margin-right: auto;
|
|
|
|
+ margin-top: 23px;
|
|
|
|
+ }
|
|
|
|
+ .five:before {
|
|
|
|
+ content: "";
|
|
|
|
+ height: 42px;
|
|
|
|
+ width: 4px;
|
|
|
|
+ position: absolute;
|
|
|
|
+ left: 48px;
|
|
|
|
+ top: 10px;
|
|
|
|
+ background: #fff;
|
|
|
|
+ border-radius: 2px;
|
|
|
|
+ transform-origin: 2px 40px;
|
|
|
|
+ animation: loader5Animation 2s linear infinite;
|
|
|
|
+ }
|
|
|
|
+ .five:after {
|
|
|
|
+ content: "";
|
|
|
|
+ height: 27px;
|
|
|
|
+ width: 4px;
|
|
|
|
+ position: absolute;
|
|
|
|
+ left: 48px;
|
|
|
|
+ top: 25px;
|
|
|
|
+ background: #fff;
|
|
|
|
+ border-radius: 2px;
|
|
|
|
+ transform-origin: 2px 25px;
|
|
|
|
+ animation: loader5Animation 12s linear infinite;
|
|
|
|
+ }
|
|
|
|
+ @keyframes loader5Animation {
|
|
|
|
+ 0% {
|
|
|
|
+ tranform: rotate(0deg);
|
|
|
|
+ }
|
|
|
|
+ 100% {
|
|
|
|
+ transform: rotate(360deg);
|
|
|
|
+ }
|
|
|
|
+ }
|