警告:私は初心者です。J/Sには次の2つの機能があります。
function please()
{
document.getElementById("test3").innerHTML = "mercy";
}
function displayAnimation()
{
document.getElementById('myfirst').style.animation-play-state = 'running';
document.getElementById('myfirst').style.-moz-animation-play-state = 'running';
document.getElementById('myfirst').style.-webkit-animation-play-state = 'running';
}
私が知っていることから、彼らはまったく相互作用しません。しかし、displayAnimation()に3行ある場合、他のJ / S関数は機能しますが、please()は機能しません。
それに加えて、displayAnimation()をアクティブにしたときに、アニメーションが「一時停止」から「実行中」に変更されません。