美文网首页网页前端后台技巧(CSS+HTML)
CSS animation 动画执行结束保留结束状态

CSS animation 动画执行结束保留结束状态

作者: GloryMan | 来源:发表于2019-12-30 15:04 被阅读0次

    实例:一个箭头默认向下,点击展开之后箭头向上

    animation.gif

    animation: rotate .25s linear 1 alternate forwards;

    意思为 name、时间、动画的速度曲线、动画执行次数、如何循环、动画之前或之后的效果

        /* 显示的时候动画效果 */
        .animation {
            animation: rotate .25s linear 1 alternate forwards;
        }
     /*隐藏时候动画效果 */
        .animation1 {
            animation: rotate1 .25s linear 1 alternate forwards;
        }
    
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
    
            100% {
                transform: rotate(180deg);
            }
        }
        @keyframes rotate1 {
            0% {
                transform: rotate(180deg);
                
            }
            100% {
                transform: rotate(0deg);
            }
        }
    

    相关文章

      网友评论

        本文标题:CSS animation 动画执行结束保留结束状态

        本文链接:https://www.haomeiwen.com/subject/vwcmoctx.html