iframe.ts 261 B

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