0

私は Web コーディングの初心者なので、これはばかげた質問のように思えるかもしれませんが、聞いても害はありません... オーディオ トラックのプログレス バーを取得してキャンバス アニメーションをトリガーする方法はありますか?? どんな助けでも大歓迎です。:)

4

1 に答える 1

0

バインディングをアタッチできるイベントのリストは次のとおりです: http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#mediaevents

おそらく「play」イベントを探しているので、次のようにします。

document.getElementById('aud').play = function () {
    getElementById('can').animate();
}

そして「終わった」イベント

document.getElementById('aud').ended = function () {
    getElementById('can').stopAnimate();
}
于 2013-03-04T22:05:19.430 に答える