mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 09:21:22 +08:00
9cf6ae6010
now support Button, Tag, Radio.Button and switch
37 lines
724 B
Plaintext
37 lines
724 B
Plaintext
@keyframes loadingCircle {
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
[ant-click-animating],
|
|
[ant-click-animating-without-extra-node] {
|
|
position: relative;
|
|
}
|
|
|
|
[ant-click-animating-without-extra-node]:after,
|
|
.ant-click-animating-node {
|
|
content: '';
|
|
position: absolute;
|
|
top: -1px;
|
|
left: -1px;
|
|
bottom: -1px;
|
|
right: -1px;
|
|
border-radius: inherit;
|
|
border: 0 solid @primary-color;
|
|
opacity: 0.4;
|
|
animation: waveEffect .4s cubic-bezier(.25, .8, .25, 1);
|
|
display: block;
|
|
}
|
|
|
|
@keyframes waveEffect {
|
|
to {
|
|
opacity: 0;
|
|
top: -@wave-animation-width;
|
|
left: -@wave-animation-width;
|
|
bottom: -@wave-animation-width;
|
|
right: -@wave-animation-width;
|
|
border-width: @wave-animation-width;
|
|
}
|
|
}
|