function() {
covervideo.play();
setTimeout(function() {
covervideo.pause();
}, 1150);
}
const video = document.getElementById('video');
video.ontimeupdate = function() {
window.console.log(video.currentTime);
};
9.643231
9.893151
10.143168
10.393094
10.643828
10.893123
11.1771
11.39276
function update(t) {
window.console.log(t);
window.requestAnimationFrame(update);
};
update();