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>

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值