当前位置:   article > 正文

vue2中视频的播放_vue2 视频播放器

vue2 视频播放器

1、安装依赖(vue2中要限制版本号)

npm install vue-video-player@4.0.6

2、在main.js主文件中引入


     import VideoPlayer from 'vue-video-player'
     import 'vue-video-player/src/custom-theme.css'
     import 'video.js/dist/video-js.css'
     Vue.use(VideoPlayer)

3、创建Home.vue组件

<template>

  <div @click="big" class="bb" :class="{aa:flag}">

      <video-player   class="video-player vjs-custom-skin"

                    ref="videoPlayer"

                    :playsinline="true"

                    :options="playerOptions"

      ></video-player>

      <p>hhhhhhhhhhhhhhhhhhhhhhhhh</p>

  </div>

</template>

<script>

  export default {

      name: "demo7",

      data(){

          return {

            flag:false,

              playerOptions : {

                  playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度

                  autoplay: false, //如果true,浏览器准备好时开始回放。

                  muted: false, // 默认情况下将会消除任何音频。

                  loop: false, // 导致视频一结束就重新开始。

                  preload: 'auto', // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)

                  language: 'zh-CN',

                  aspectRatio: '16:9', // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")

                  fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。

                  sources: [{

                      type: "video/mp4",

                      src: "http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4" //url地址

                  }],

                  poster: "", //你的封面地址

                  // width: document.documentElement.clientWidth,

                  notSupportedMessage: '此视频暂无法播放,请稍后再试', //允许覆盖Video.js无法播放媒体源时显示的默认信息。

                  controlBar: {

                      timeDivider: true,

                      durationDisplay: true,

                      remainingTimeDisplay: false,

                      fullscreenToggle: true  //全屏按钮

                  }

              },

          }

      },

      methods: {

        big() {

           this.flag=true

        }

      },

      created () {

       

      },


 

  }

</script>

<style scoped lang="less">

.bb{

    margin: 0 auto;

    width: 500px;

    height: 300px;

}

.aa{

    margin: 0 auto;

    // style="width: 500px;height: 150px;margin:0 auto;box-shadow:5px 5px 8px #888888"

    width: 700px;

    height: 400px;

    border: 3px solid red;

}

/deep/.video-js .vjs-big-play-button{

    border-width: 3px;

    border-color: rgb(255, 255, 255);

    border-style: solid;

    border-radius: 50%;

    width: 70px;

    height: 60px;

    line-height: 50px;

    background-color: rgba(0,0,0,0);

    position: absolute;

    top: 0;

    bottom: 0;

    left: 0;

    right: 0;

    margin: auto;

  }


 

</style>

  

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/79536
推荐阅读
相关标签
  

闽ICP备14008679号