css CSS3加载图标/微调器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css CSS3加载图标/微调器相关的知识,希望对你有一定的参考价值。
.load {
height:100px;
width:100px;
margin:0 auto;
position:relative;
-webkit-animation: rotation 1s infinite linear;
-moz-animation: rotation .6s infinite linear;
-o-animation: rotation .6s infinite linear;
animation: rotation .6s infinite linear;
border:6px solid rgba(236,30,39,.25);
border-radius:100%;
}
.load:before {
content:"";
height:100%;
width:100%;
left:-6px;
top:-6px;
position:absolute;
display:block;
border-top:6px solid rgba(236,30,39,.9);
border-left:6px solid transparent;
border-bottom:6px solid transparent;
border-right:6px solid transparent;
border-radius:100%;
}
@-webkit-keyframes rotation {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
from {-moz-transform: rotate(0deg);}
to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
from {-o-transform: rotate(0deg);}
to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
from {transform: rotate(0deg);}
to {transform: rotate(359deg);}
以上是关于css CSS3加载图标/微调器的主要内容,如果未能解决你的问题,请参考以下文章
WooCommerce 更改加载微调器图标
css3微调器上的抽搐动画
处于加载状态时如何向按钮添加微调器图标?
css CSS / HTML仅加载微调器
CSS 通用图像预加载器(微调器)
在 asp.net 回发期间触发 javascript(以显示 css 加载器/微调器)