iframe.ts 267 B

1234567891011121314
  1. const iframe = new iFrame();
  2. iframe.on("UpdateData", async () => {
  3. const video: HTMLVideoElement = document.querySelector("video");
  4. if (video) {
  5. iframe.send({
  6. paused: video.paused,
  7. duration: video.duration,
  8. currentTime: video.currentTime,
  9. });
  10. }
  11. });