iframe.ts 345 B

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