Created
December 1, 2021 11:06
-
-
Save nickchauhan/0cf83516379ac7d545698af40b3d6ece to your computer and use it in GitHub Desktop.
Pause Videos (HTML video / youtube embed/ vimeo embed) programmatically using Javascript / Typescript
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
// Get all the videos in the slides | |
const videos: NodeListOf<HTMLVideoElement> = document.querySelectorAll("video"); | |
const iframeVideos: NodeListOf<HTMLIFrameElement> = | |
document.querySelectorAll("iframe"); | |
// pause all the HTML videos | |
if (videos.length > 0) { | |
videos.forEach((videoItem) => { | |
videoItem.pause(); | |
}); | |
} | |
// pause all the iframe videos | |
if (iframeVideos.length > 0) { | |
iframeVideos.forEach((iframe) => { | |
if (iframe.contentWindow) { | |
// Pause Youtube Videos | |
if (iframe.src.startsWith("https://www.youtube.com")) { | |
iframe.contentWindow.postMessage( | |
'{"event":"command","func":"pauseVideo","args":""}', | |
"*" | |
); | |
} | |
// Pause Vimeo Videos | |
if (iframe.src.startsWith("https://player.vimeo.com/")) { | |
iframe.contentWindow.postMessage('{"method":"pause"}', "*"); | |
} | |
} | |
}); | |
} |
thanks for the vimeo one
๐๐
Samuel L Jackson voice MA'MAN - thank you
super
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you @nickchauhan. It was really a helpful snippet.