vue 使用vue-video-player加载视频(铺满容器)

vue 使用vue-video-player加载视频(铺满容器)

  • 安装
shell 复制代码
npm install vue-video-player --save
  • main.js 引入
js 复制代码
import VideoPlayer from "vue-video-player"
import "video.js/dist/video-js.css"
import "vue-video-player/src/custom-theme.css"
import "videojs-flash"
Vue.use(VideoPlayer)
  • 使用
html 复制代码
<!-- 循环创建了四个视频 -->
<div
          class="spItemBox"
          v-for="(item, i) in videoList"
          :key="i"
        >
          <video-player
            style="width: 100%; height: 100%; object-fit: fill"
            class="video-player vjs-custom-skin"
            ref="videoPlayer"
            :playsinline="true"
            :options="playerOptions[i]"
          ></video-player>
        </div>
js 复制代码
export default {
  data() {
    return {
      playerOptions: [],
      videoList: [{}, {}, {}, {}],
    };
  },

  mounted() {
    for (let index = 0; index < 4; index++) {
      let url = require("../../../../../assets/videos/video1.mp4"); // 测试视频url
      const obj = {
        // playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度
        autoplay: false, //如果true,浏览器准备好时开始回放。
        muted: true, // 默认情况下将会消除任何音频。
        loop: true, // 导致视频一结束就重新开始。
        preload: "auto", // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
        language: "zh-CN",
        aspectRatio: "14:6", // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
        fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
        sources: [
          {
            type: "video/mp4", //这里的种类支持很多种:基本视频格式、直播、流媒体等,具体可以参看git网址项目
            src: url, //url地址
          },
        ],
        poster: "", //你的封面地址
        // width: document.documentElement.clientWidth, //播放器宽度
        notSupportedMessage: "此视频暂无法播放,请稍后再试", //允许覆盖Video.js无法播放媒体源时显示的默认信息。
        controlBar: {
          timeDivider: false,
          durationDisplay: false,
          remainingTimeDisplay: false,
          fullscreenToggle: false, //全屏按钮
        },
      };

      this.playerOptions.push(obj);
    }
  },
};
  • 使视频铺满容器
css 复制代码
/deep/ .video-js {
  height: 100%;
}
/deep/ .video-js .vjs-tech {
  object-fit: fill;
}
/deep/ .vjs-poster {
  background-size: cover;
}
相关推荐
d***9351 小时前
springboot3.X 无法解析parameter参数问题
android·前端·后端
n***84072 小时前
十七:Spring Boot依赖 (2)-- spring-boot-starter-web 依赖详解
前端·spring boot·后端
likuolei6 小时前
XSL-FO 软件
java·开发语言·前端·数据库
正一品程序员6 小时前
vue项目引入GoogleMap API进行网格区域圈选
前端·javascript·vue.js
j***89466 小时前
spring-boot-starter和spring-boot-starter-web的关联
前端
star_11126 小时前
Jenkins+nginx部署前端vue项目
前端·vue.js·jenkins
im_AMBER6 小时前
Canvas架构手记 05 鼠标事件监听 | 原生事件封装 | ctx 结构化对象
前端·笔记·学习·架构
JIngJaneIL6 小时前
农产品电商|基于SprinBoot+vue的农产品电商系统(源码+数据库+文档)
java·前端·数据库·vue.js·spring boot·毕设·农产品电商系统
Tongfront7 小时前
前端通用submit方法
开发语言·前端·javascript·react
c***72747 小时前
SpringBoot + vue 管理系统
vue.js·spring boot·后端