문제

In the all new mac pro introduction page, when you click those dots on the left down to up one by one, the video plays backward, too. But Chrome or Firefox doesn't support negative playbackRate property, and there seems no another backward recorded video.

도움이 되었습니까?

해결책

I found a solution last night.

var video = document.getElementByID("video");
video.currentTime = 10;
video.pause();
function reverse() {
    video.currentTime -= 0.01;
    setInterval(reverse,10);
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top