img{
&:hover{
animation: lsp 0.3s linear;
animation-fill-mode:forwards;
}
}
@keyframes lsp {
0% {
transform: translateY(0px);
}
100% {
transform: translateY(-5px);
}
}
css3动画 animation 停在终点位置上可以用animation-fill-mode:forwards 添加在调用代码下
最新推荐文章于 2024-09-21 23:13:41 发布