編碼的世界 / 優質文選 / 生涯

css3 動畫停留在最後一幀


2022年7月02日
-   

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);
}
}

熱門文章