Helps control video elements with autoplay available down to iOS 8.
Load via script tag:
<!-- Just an IIFE namespaced `playah` -->
<script src="https://thewhodidthis.github.io/playah/playah.js"></script>
Source from an import map:
{
"imports": {
"playah": "https://thewhodidthis.github.io/playah/main.js"
}
}
Download from GitHub directly if using a package manager:
# Add to package.json
npm install thewhodidthis/playah
Feed with a <video>
element as for example,
import createPlayer from "playah"
const video = document.createElement("video")
"playsinline loop autoplay".split(" ").forEach((v) => {
video.setAttribute(v, "")
})
video.setAttribute("src", "BigBuckBunny.mp4")
// Instantiating past video setup is key in this example.
const { play, stop } = createPlayer(video)
let paused = 1
video.addEventListener("loadstart", () => {
paused = 0
})
video.addEventListener("click", (e) => {
e.preventDefault()
paused = paused ? play() : stop()
}, false)
document.body.appendChild(video)