国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

vue-video-player視頻播放器使用配置詳解

瀏覽:116日期:2022-11-13 15:30:58

本文實(shí)例為大家分享了vue-video-player視頻播放器的使用配置,供大家參考,具體內(nèi)容如下

1、安裝

npm install vue-video-player -save

2、在main.js中添加

import VueVideoPlayer from ’vue-video-player’ // 視頻播放器import ’video.js/dist/video-js.css’Vue.use(VueVideoPlayer)

3、新建一個(gè)vueVideoPlayer.vue組件供調(diào)用

<template> <div id='vueVideoPlayer'> <video-player ref='videoPlayer' :playsinline='true' :options='playerOptions'></video-player> </div></template><script>export default { name: ’vueVideoPlayer’, props: { src: { type: String }, cover_url: { type: String } }, data () { return { // 配置信息 playerOptions: { playbackRates: [0.7, 1.0, 1.5, 2.0], // 播放速度 autoplay: false, // 如果true,瀏覽器準(zhǔn)備好時(shí)開始回放。 muted: false, // 默認(rèn)情況下將會消除任何音頻。 loop: false, // 導(dǎo)致視頻一結(jié)束就重新開始。 preload: ’auto’, // 建議瀏覽器在<video>加載元素后是否應(yīng)該開始下載視頻數(shù)據(jù)。auto瀏覽器選擇最佳行為,立即開始加載視頻(如果瀏覽器支持) language: ’zh-CN’, aspectRatio: ’16:10’, // 將播放器置于流暢模式,并在計(jì)算播放器的動態(tài)大小時(shí)使用該值。值應(yīng)該代表一個(gè)比例 - 用冒號分隔的兩個(gè)數(shù)字(例如'16:9'或'4:3') fluid: true, // 當(dāng)true時(shí),Video.js player將擁有流體大小。換句話說,它將按比例縮放以適應(yīng)其容器。 sources: [{ src: this.src, // 路徑 type: ’video/mp4’ // 類型 }], poster: this.cover_url, // 你的封面地址 // width: document.documentElement.clientWidth, notSupportedMessage: ’此視頻暫無法播放,請稍后再試’, // 允許覆蓋Video.js無法播放媒體源時(shí)顯示的默認(rèn)信息。 controlBar: { timeDivider: true, durationDisplay: true, remainingTimeDisplay: false, fullscreenToggle: true // 全屏按鈕 } } } }}

4、在其他組件調(diào)用

<vueVideoPlayer :src='http://www.intensediesel.com/bcjs/data.url' :cover_url='data.cover_url' />import vueVideoPlayer from ’./module/vueVideoPlayer’// 不要忘記注冊components: { vueVideoPlayer }

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Vue
相關(guān)文章:
主站蜘蛛池模板: 定兴县| 凤阳县| 通化市| 昭觉县| 乌苏市| 山东省| 虹口区| 厦门市| 应城市| 丹棱县| 桂平市| 山西省| 乾安县| 江西省| 固安县| 曲阜市| 方正县| 年辖:市辖区| 富锦市| 涿州市| 方正县| 江源县| 昌图县| 呼图壁县| 额敏县| 海兴县| 桦川县| 周至县| 桂东县| 德清县| 南开区| 德格县| 北安市| 大方县| 临邑县| 万宁市| 石屏县| 轮台县| 德惠市| 高阳县| 正镶白旗|