Created
May 28, 2014 01:26
-
-
Save shenqihui/e891a492d5a5c48051f6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var video = document.getElementById("video"); | |
function getCurTime() { | |
console.log(video.currentTime); | |
setTimeout(getCurTime, 200); | |
} | |
getCurTime() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment