您好我添加了这个类来为结果设置动画:
class="animated bounceInUp" // https://daneden.github.io/animate.css/
但是如何逐个动画结果1? 比如第一个结果然后是第二个结果,每个结果有0.4个延迟。
答案 0 :(得分:0)
只需在转换速记中使用transition-delay属性,即可在一个CSS规则中按顺序执行多个转换。
-webkit-transition: width 2s, height 2s ease 2s;
transition: width 2s, height 2s ease 2s;