I want my animation when the HTML5 background video reaches a certain point. Right now it starts once the video is ended. Is there a way to find the progess of the video and start the animation once the video has reached a certain point? Here is my code.
// 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();
}