css动画,展开折叠图标

css动画,展开折叠图标_第1张图片

@keyframes packupArrowFlow {
    0% {
        bottom: 0;
    }
    70% {
        bottom: 10px;
    }
}
@-webkit-keyframes packupArrowFlow {
    0% {
        bottom: 0;
    }
    70% {
        bottom: 10px;
    }
}
.gradient .packupArrow {
    -webkit-animation: packupArrowFlow 1s ease infinite;
    animation: packupArrowFlow 1s ease infinite;
}

使用关键帧动画

转载于:https://www.cnblogs.com/gopark/p/9894594.html

你可能感兴趣的:(css动画,展开折叠图标)