好吧,我正在尝试用动画来减少 div 的宽度。我已经成功做到了,但它从右到左减少。我希望它从左到右减少。请帮忙。
.box{height:0%;
width:830px;
border-bottom:20px solid #c00;
-webkit-animation: increase 3s;
-moz-animation: increase 3s;
-o-animation: increase 3s;
animation: increase 3s;
animation-fill-mode: forwards;
}
@keyframes increase {
100% {
width: 1px;
}
}
犯罪嫌疑人X
汪汪一只猫
相关分类