vue中使用xgplayer(西瓜播放器)插件进行视频的播放
vue中使用xgplayer(西瓜播放器)插件进行视频的播放
·
npm install xgplayer
<template>
<div id="video-player" class="video-player"></div>
</template>
<script>
import Player from 'xgplayer';
import 'xgplayer/dist/index.min.css';
export default {
data() {
return {
url: "",
};
},
mounted() {
this.initPlayer();
},
methods: {
initPlayer() {
const config = {
id: 'video-player',
url: this.url,
fluid: true,
playbackRate: [0.5, 0.75, 1, 1.5, 2],
defaultPlaybackRate: 1,
playsinline: this.isAppleDevice(), // IOS设备设置,防止被浏览器劫持
'x5-video-player-type': 'h5', // 微信内置浏览器设置,防止被浏览器劫持
'x5-video-orientation': 'portraint',
pip: true,
pipConfig: {
bottom: 100,
right: 100,
width: 320,
height: 180,
},
download: true,
videoInit: true,
autoplay: true,
};
const player = new Player(config);
if (player) {
this.player.on('play', () => {
this.$emit('triggerEvent', true);
});
this.player.on('pause', () => {
this.$emit('triggerEvent', false);
});
this.player.on('exitFullscreen', () => {
window.scrollTo(0, 0);
});
}
},
isAppleDevice() {
const ua = navigator.userAgent.toLowerCase();
return /iphone|ipad|phone|Mac/i.test(ua);
},
},
};
</script>
更多推荐
已为社区贡献4条内容
所有评论(0)