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

css3 动画停留在最后一帧

程序员文章站 2024-03-25 11:54:22
...
html:
<p class="test">
   哈哈
</p>

css:

.test{
    width: 200px;
    height: 200px;  
    animation:bj 1s linear forwards;
    background: lightblue;
}
@-webkit-keyframes bj{
    100%{
        transform: translateX(300px);
    }
}