iframe.ts 392 B

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