我最近一直在玩 CSS 计数器,我想知道是否可以将它们放在 CSS 动画循环中并增加它们。我的代码相当简单:
div {
animation-name: anim;
animation-duration: 0.5s;
animation-iteration-count: 10;
animation-fill-mode: forwards;
}
div:before {
counter-increment: variable;
content: counter(variable);
}
@keyframes anim {
100% { counter-increment: variable; }
}
<div></div>
你可以看到数字上升了,但随后又回到了 1。我认为这animation-fill-mode: forwards
会阻止这种情况发生,但我想不会。
我做错了什么,还是 CSS 计数器不可能做到这一点?