跳转中,请稍等 - 页面加载动画
<div id="paneloading" style="display:">
<div class="spinner">
<div class="spinner-container container1">
<div class="circle1"></div>
<div class="circle2"></div>
<div class="circle3"></div>
<div class="circle4"></div>
</div>
<div class="spinner-container container2">
<div class="circle1"></div>
<div class="circle2"></div>
<div class="circle3"></div>
<div class="circle4"></div>
</div>
<div class="spinner-container container3">
<div class="circle1"></div>
<div class="circle2"></div>
<div class="circle3"></div>
<div class="circle4"></div>
</div>
</div>
</div>
<style>
*{margin:0;padding:0;font-family: 'Microsoft YaHei';color: #fff;}
body,div,form,input,li,ol,p,textarea,ul{margin:0;padding:0;font-family: 'Microsoft YaHei';color: #fff;}
body{background:#fff;color:#3f3f3f;font-family:Apple LiGothic Medium,SimHei,Geneva,Arial,Helvetica,sans-serif;-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-appearance:none;width:100%;font-size:12px;}
body p {color: white;text-align: center;line-height: 25px;}
.spinner {
margin: 100px auto;
width: 40px;
height: 20px;
position: relative;
}
<p>.container1 > div, .container2 > div, .container3 > div {
width: 6px;
height: 6px;
background-color: #333;</p>
<pre><code>border-radius: 100%;
position: absolute;
-webkit-animation: bouncedelay 1.2s infinite ease-in-out;
animation: bouncedelay 1.2s infinite ease-in-out;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
</code></pre>
<p>}</p>
<p>.spinner .spinner-container {
position: absolute;
width: 100%;
height: 100%;
}</p>
<p>.container2 {
-webkit-transform: rotateZ(45deg);
transform: rotateZ(45deg);
}</p>
<p>.container3 {
-webkit-transform: rotateZ(90deg);
transform: rotateZ(90deg);
}</p>
<p>.circle1 { top: 0; left: 0; }
.circle2 { top: 0; right: 0; }
.circle3 { right: 0; bottom: 0; }
.circle4 { left: 0; bottom: 0; }</p>
<p>.container2 .circle1 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}</p>
<p>.container3 .circle1 {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}</p>
<p>.container1 .circle2 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}</p>
<p>.container2 .circle2 {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}</p>
<p>.container3 .circle2 {
-webkit-animation-delay: -0.7s;
animation-delay: -0.7s;
}</p>
<p>.container1 .circle3 {
-webkit-animation-delay: -0.6s;
animation-delay: -0.6s;
}</p>
<p>.container2 .circle3 {
-webkit-animation-delay: -0.5s;
animation-delay: -0.5s;
}</p>
<p>.container3 .circle3 {
-webkit-animation-delay: -0.4s;
animation-delay: -0.4s;
}</p>
<p>.container1 .circle4 {
-webkit-animation-delay: -0.3s;
animation-delay: -0.3s;
}</p>
<p>.container2 .circle4 {
-webkit-animation-delay: -0.2s;
animation-delay: -0.2s;
}</p>
<p>.container3 .circle4 {
-webkit-animation-delay: -0.1s;
animation-delay: -0.1s;
}</p>
<p>@-webkit-keyframes bouncedelay {
0%, 80%, 100% { -webkit-transform: scale(0.0) }
40% { -webkit-transform: scale(1.0) }
}</p>
<p>@keyframes bouncedelay {
0%, 80%, 100% {
transform: scale(0.0);
-webkit-transform: scale(0.0);
} 40% {
transform: scale(1.0);
-webkit-transform: scale(1.0);
}
}
</style></p>
原文地址: https://www.cveoy.top/t/topic/nPOm 著作权归作者所有。请勿转载和采集!