12345678910111213 |
- const iframe = new iFrame();
- iframe.on("UpdateData", async () => {
- const video: HTMLVideoElement = document.querySelector("video");
- if (video && !isNaN(video.duration)) {
- iframe.send({
- currTime: video.currentTime,
- duration: video.duration,
- paused: video.paused,
- });
- }
- });
|