【发布时间】:2018-10-30 17:13:48
【问题描述】:
我将这个动画应用到了一张桌子上。我希望每次单击会更改表格内容的链接时都会发生这种情况,但在加载页面时不会立即发生。
.scale-up {
animation: scale-up 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes scale-up {
0% {
transform: scale(0.5);
}
100% {
transform: scale(1);
}
}
【问题讨论】:
-
可以添加你的html代码吗?