iframe.ts 325 B

12345678910111213141516
  1. const iframe = new iFrame();
  2. iframe.on("UpdateData", () => {
  3. const video: HTMLVideoElement =
  4. document.querySelector("video.jw-video") || document.querySelector("video");
  5. if (!video) return;
  6. iframe.send({
  7. elapsed: video.currentTime,
  8. duration: video.duration,
  9. ended: video.ended,
  10. paused: video.paused,
  11. });
  12. });