【发布时间】:2021-05-08 08:14:36
【问题描述】:
我想让这个 div 随时不停地动画,我怎样才能让它从下到上不停地动画呢?
div {
width: 10px;
height: 100px;
background: red;
position: relative;
animation: animateDiv 5s 2;
animation-direction: alternate;
}
@keyframes animateDiv {
0% {bottom: 0px; top: 10px;}
25% {bottom: 200px; top:30px;}
}
【问题讨论】: