0

警告:私は初心者です。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()をアクティブにしたときに、アニメーションが「一時停止」から「実行中」に変更されません。

4

1 に答える 1

2

スタイルのプロパティをよく見ると、それらの構文が無効であることがわかります(JavaScript構文)

aで区切られた複数の単語プロパティの命名規則-は最初から2番目です->firstSecond

style.animationPlayState

ベンダープレフィックスの場合-prefix-other->PrefixOther

style.MozAnimationPlayState
于 2012-07-13T21:02:50.307 に答える