您可以使用animationend
活动.
function firstRun(){ rightBox.style.animation = "TextEffectMadeWithCSS 10s"; rightBox.addEventListener('animationend', secondRun); //once it's finished. } function secondRun(){ rightBox.style.animation = "TextEffectMadeWithCSS 10s"; rightBox.removeEventListener('animationend', secondRun); //remove the listener so this doesn't loop. }