iview/src/styles/components/spin.less

69 lines
1.2 KiB
Text
Raw Normal View History

2016-09-09 14:29:19 +08:00
@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;
2016-09-09 14:29:19 +08:00
}
&-large &-dot {
.square(@spin-dot-size-large);
}
&-small &-dot {
.square(@spin-dot-size-small);
}
&-fix {
position: absolute;
top: 0;
left: 0;
z-index: @zindex-spin;
.square(100%);
2017-09-18 17:50:28 +08:00
background-color: rgba(255,255,255,.95);
2016-09-09 14:29:19 +08:00
}
&-fix &-main {
2017-09-18 17:50:28 +08:00
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
2016-09-09 14:29:19 +08:00
}
&-fix &-dot {
display: inline-block;
}
&-text,
&-show-text &-dot {
display: none;
}
&-show-text &-text {
display: block;
}
}
@keyframes ani-spin-bounce {
0% {
transform: scale(0);
2016-09-09 14:29:19 +08:00
}
100% {
transform: scale(1);
2016-09-09 14:29:19 +08:00
opacity: 0;
}
}