Vimeo Player API
粉丝福利 : 关注VUE中文社区公众号,回复视频领取粉丝福利
我想使用Vimeo player API
這裡是相關的網址
vimeo/player.js
Interact with and control an embedded Vimeo Player. - vimeo/player.js
我使用了
npm install [@vimeo](/user/vimeo)/player
在index.html裡加入了
src=“https://player.vimeo.com/api/player.js”
(前後標籤省略因為這邊顯示不出來
然後我在放影片的vue裡加入了
var iframe = document.querySelector(‘iframe’);
var player = new Vimeo.Player(iframe);
player.on('play', function() {
console.log('played the video!');
});
player.getVideoTitle().then(function(title) {
console.log('title:', title);
});
執行時會出現Vimeo is not defined
想請問是什麼問題呢?
麻煩各位大佬了