iframe.ts 361 B

12345678910111213141516
  1. const iframe = new iFrame();
  2. iframe.on("UpdateData", async () => {
  3. if (document.querySelector("video")) {
  4. const video: HTMLVideoElement = document.querySelector("video");
  5. if (video && !isNaN(video.duration)) {
  6. iframe.send({
  7. exists: true,
  8. duration: video.duration,
  9. currentTime: video.currentTime,
  10. paused: video.paused,
  11. });
  12. }
  13. }
  14. });