当 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();
}