1234567891011121314151617 |
- const iframe = new iFrame();
- iframe.on("UpdateData", async () => {
- if (document.querySelector("#video_html5_wrapper_html5_api")) {
- const video = document.querySelector<HTMLVideoElement>(
- "#video_html5_wrapper_html5_api"
- );
- if (!isNaN(video?.duration)) {
- iframe.send({
- duration: video.duration,
- currentTime: video.currentTime,
- paused: video.paused,
- });
- }
- }
- });
|