欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

css中animation的steps遇到多帧

程序员文章站 2024-03-24 12:42:16
...

css中animation的steps如果遇到多个帧,是每个都进行分割:

#rect{
    width:76px;
    height:125px;
    border:1px solid black;
    animation:move  1 2s steps(2,start) ;
}
@keyframes move{
    0%{
        background:red;
    }
    50%{
        background:blue;
    }
    100%{
        background:red;
    }
}

css中animation的steps遇到多帧
原文链接:
css中animation的steps遇到多帧