我想知道是否有可能使用一些 javascript 或 jquery 跳到下一个,或者转到 css 动画的最后一部分。假设我们有以下内容:
@keyframe effect{
0%{opacity:1;}
45%{opacity:1;}
50%{opacity:0;}
95%{opacity:0;}
100%{opacity:1;}
}
这将使某些东西淡出然后重新出现
所以可以说我做了一些按钮。我将如何执行以下操作:
$('#next').click(function(){
//skip to the next animation part
});
$('#previous').click(function(){
//skip to the previous animation part
});