标签: css-animations
animation: my-animation 3s steps(1, end) infinite; animation: my-animation 3s steps(1, jump-end) infinite;
根据MDN,它是:说:“ end等同于jump-end”。
但是实际上,我发现行为并不相同。请查看this example,如果将steps(2, end)更改为steps(2, jump-end),动画将停止。
steps(2, end)
steps(2, jump-end)
请告诉我原因是什么。