iframe.ts 320 B

12345678910111213
  1. const iframe = new iFrame()
  2. iframe.on('UpdateData', async () => {
  3. const video = document.querySelector<HTMLVideoElement>('video')
  4. if (video && !Number.isNaN(video.duration)) {
  5. iframe.send({
  6. duration: video.duration,
  7. currTime: video.currentTime,
  8. paused: video.paused,
  9. })
  10. }
  11. })