gpt4 book ai didi

jquery - 如何使用 jQuery 在 iframe 中结束视频时触发事件?

转载 作者:行者123 更新时间:2023-12-02 17:18:27 24 4
gpt4 key购买 nike

我希望在视频播放完毕时触发一个事件,这是我正在使用的以下 iframe:

<div class="item">
<div class="home-content-slider">
<div class="home-content-inner">
<iframe id="vid1" src="<%= post %>" width="" height="" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>

最佳答案

Check this JsFiddle , 演示 Vimeo 视频嵌入示例,并在视频播放和完成时发出警报

<iframe src="https://player.vimeo.com/video/66966424" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>

<script src="https://player.vimeo.com/api/player.js"></script>
<script>

var iframe = document.querySelector('iframe');
var player = new Vimeo.Player(iframe);

player.on('play', function() {
alert('You have played the video')
});
player.on('ended', function(){
alert('Video play completed');
});

player.getVideoTitle().then(function(title) {
console.log('title:', title);
});
</script>

Vimeo API Reference

关于jquery - 如何使用 jQuery 在 iframe 中结束视频时触发事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44826554/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com