Skip to content

Instantly share code, notes, and snippets.

@rdundon
Created March 22, 2021 18:34
Show Gist options
  • Save rdundon/94b2c97647f6d02eca5d5646c04c7ed0 to your computer and use it in GitHub Desktop.
Save rdundon/94b2c97647f6d02eca5d5646c04c7ed0 to your computer and use it in GitHub Desktop.
// "videoTag" is <video> element pulled from the DOM
var videoPercentageRate = this.duration / 100;
var videoCompletionRateIntervals = [25,50,75,100];
videoTag.play = function() {
var percentageCompleted = (videoTag.currentTime / videoTag.duration) * 100
console.log(percentageCompleted);
if (percentageCompleted >= videoCompletionRateIntervals[0]) {
console.log(videoCompletionRateIntervals[0], '% of video completed');
// GA Event
videoCompletionRateIntervals.splice(0,1);
}
if (videoCompletionRateIntervals.length == 0) {
videoTag.play = null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment