react-cnode icon indicating copy to clipboard operation
react-cnode copied to clipboard

关于animation动画(keyframes)

Open ckinmind opened this issue 8 years ago • 0 comments

1. 下滑动画

.common-header {
    height: 50px;
    z-index: 999;
    position: relative;
    background: @style-main;
    animation: move-down 0.3s ease-out;
}
@keyframes move-down {
    0% {
        transform: translate(0, -10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

ckinmind avatar Feb 20 '17 17:02 ckinmind