Skip to content

Instantly share code, notes, and snippets.

@shuhblam
Created October 7, 2011 02:59
Show Gist options
  • Save shuhblam/1269336 to your computer and use it in GitHub Desktop.
Save shuhblam/1269336 to your computer and use it in GitHub Desktop.
popcorn test
var p = Popcorn("#silence")
.code({
start: 0,
end: 5,
onStart: function (options) {
},
onFrame: (function () {
var count = 0;
return function (options) {
console.log(this.Popcorn.instances[0].media.currentTime)
}
})(),
onEnd: function (options) {
play(0)
}
})
.volume(0).play();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment