UNPKG

tntd

Version:

tntd是基于 TNT Design 设计体系的 React UI 组件库,主要用于研发企业级中后台产品。

41 lines (36 loc) 775 B
@keyframes loadingCircle { 100% { transform: rotate(360deg); } } [ant-click-animating='true'], [ant-click-animating-without-extra-node='true'] { position: relative; } [ant-click-animating-without-extra-node='true']::after, .ant-click-animating-node { position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: block; border-radius: inherit; box-shadow: 0 0 0 0 @primary-color; opacity: 0.2; animation: fadeEffect 2s @ease-out-circ, waveEffect 0.4s @ease-out-circ; animation-fill-mode: forwards; content: ''; pointer-events: none; } @keyframes waveEffect { 100% { // box-shadow: 0 0 0 @primary-color; box-shadow: 0 0 0 @wave-animation-width @primary-color; } } @keyframes fadeEffect { 100% { opacity: 0; } }