iframe.ts 281 B

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