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
您是否嘗試聯繫他們的開發團隊? –
您應該檢查視頻服務提供商的回調。 –
與其將一個問題編輯成一個全新的問題,不如提出一個新問題。只有上述評論已被這個編輯無效,所以我會放棄 - 如果答案已經失效,我會回滾更改。 – halfer