vue 2.0 的video插件vue-video-player
第1步:
1.安装插件
npm install vue-video-player -S
第2步:
配置插件
在main.js里添加如下内容:
import VideoPlayer from 'vue-video-player'
require('video.js/dist/video-js.css')
require('vue-video-player/src/custom-theme.css')
Vue.use(VideoPlayer)
第3步:
使用插件
在vue的组件页面里:
<template>
<div>
<video-player class="video-player vjs-custom-skin"
ref="videoPlayer"
:playsinline="true"
:options="playerOptions">
</video-player>
</div>
</template>
<script>
export default {
name: 'BusImg',
data () {
return {
// 视频播放
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: "",
src: 'http://www.html5videoplayer.net/videos/madagascar3.mp4'//url地址
}],
poster: "", //你的封面地址
// width: document.documentElement.clientWidth,
notSupportedMessage: '此视频暂无法播放,请稍后再试', //允许覆盖Video.js无法播放媒体源时显示的默认信息。
controlBar: {
timeDivider: true,
durationDisplay: true,
remainingTimeDisplay: false,
fullscreenToggle: true //全屏按钮
}
}
}
}
}
</script>
<style>
</style>
第4步:
播放按钮的样式设置:
.video-js .vjs-big-play-button{
}
第5步:
视频格式测试:
sources: [
{
// type: "video/webm", // ok,用ogg也可打开
type: "video/ogg", // ok,用webm也可打开
// type: "video/3gp", //ok
// type: "video/mp4", // ok
// type: "video/avi", //打不开
// type: "video/flv", // 打不开
// type: "video/mkv", // 打不开
// type: "video/mov", // 打不开
// type: "video/mpg", // 打不开
// type: "video/swf", // 打不开
// type: "video/ts", // 打不开
// type: "video/wmv", // 打不开
// type: "video/vob", // 没转化
// type: "video/mxf", // 转化出错
// type: "video/rm", // 转化出错
src: '/static/video/Video_2018-05-15_105711.webm'//本地测试url地址
// src: 'http://www.html5videoplayer.net/videos/madagascar3.mp4'//url地址
}
],
第6步:
补充一下:改变视屏播放按钮的样式:
.vjs-custom-skin > .video-js .vjs-big-play-button {
background-color: rgba(0,0,0,0.45);
font-size: 3.5em;
border-radius: 50%;
height: 1.5em !important;
line-height: 2em !important;
margin-top: -1em !important;
width: 1.5em !important;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
position: absolute;
top: -9px;
left: 0;
width: 100%;
height: 100%;
}
上一篇: 3分钟极速搭建vuejs项目
下一篇: Vue2.0 子组件之间通过父组件通信
推荐阅读
-
vue 2.0 的video插件vue-video-player
-
Vue2.0 v-for filter列表过滤功能的实现
-
自带气泡提示的vue校验插件(vue-verify-pop)
-
vue2.0组件之间传值、通信的多种方式(干货)
-
Webpack+Vue如何导入Jquery和Jquery的第三方插件
-
关于Vue.js 2.0的Vuex 2.0 你需要更新的知识库
-
vue2.0安装style/css loader的方法
-
使用vue-aplayer插件时出现的问题的解决
-
【困难版】如何实现一个类vue的双向绑定——Vue2.0 | MVVM | 数据劫持+发布订阅
-
vue音乐播放器插件vue-aplayer的配置及其使用实例详解