HTML5 バックグラウンド ビデオが特定のポイントに達したときにアニメーションが必要です。現在、ビデオが終了すると開始されます。ビデオの進行状況を見つけて、ビデオが特定のポイントに達したらアニメーションを開始する方法はありますか? これが私のコードです。
// Browser Window Size and Position
function animCD_pageWidth() { return window.innerWidth != null? window.innerWidth : document.documentElement && document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body != null ? document.body.clientWidth : null;}
function animCD_pageHeight() {return window.innerHeight != null? window.innerHeight : document.documentElement && document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body != null? document.body.clientHeight : null;}
// Add the canvas to the DOM object and kick off our animation sequnce
function animCD_start()
{
if (animCD_loaded) return;
// - Add them to the document (done here since it needs to be done after the DOM object is loaded
document.body.appendChild(animCD_cBack);
document.body.appendChild(animCD_cDisk);
document.body.appendChild(animCD_cMidd);
document.body.appendChild(animCD_cFore);
document.body.appendChild(animCD_cBuff);
document.body.appendChild(animCD_cBuf2);
animCD_loaded = true;
// - Start animating
animCD_Loop();
}