您好,登錄后才能下訂單哦!
這篇文章主要介紹了微信小程序如何實現自動播放視頻模仿gif動圖效果,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
在小程序頁面插入gif動態圖,但gif圖一般體積比較大,轉而用自動播放視頻的模式來模擬gif圖的效果,豐富頁面展示。自動播放的視頻,無控制條,無聲音,自動循環播放。
因為微信小程序在同一個頁面,存在多個視頻時(建議不超過3個視頻),會出現卡頓甚至閃退的情況。
developers.weixin.qq.com/community/d…
參考小程序社區討論方案,當視頻未出現在屏幕可視區域時,用圖片占位,出現在屏幕中,把圖片替換成視頻,并且自動播放。
video標簽用wx:if來控制,image標簽用visibility樣式來占位。
<view class="container" > <image class="image" id="image_{{videoId}}" src="{{poster}}" /> <video class="video" wx:if="{{play}}" id="video_{{videoId}}" controls="{{controls}}" object-fit='contain' show-center-play-btn="{{showCenterPlayBtn}}" enable-progress-gesture="{{enableProgressGesture}}" direction="{{direction}}" enable-play-gesture="{{enablePlayGesture}}" muted="{{muted}}" loop="{{loop}}" src="{{videoUrl}}" /> </view>
.container { position: relative; width: 100%; height: 100%; } .image { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 10; width: 100%; height: 100%; } .video { width: 100%; height: 100%; }
Component({ properties: { // 視頻寬度 videoWidth: { type: Number, value: 0, }, // 視頻高度 videoHeight: { type: Number, value: 0, }, // 視頻海報/封面圖 poster: { type: String, value: '', }, // 視頻鏈接 videoUrl: { type: String, value: '', }, // 是否顯示播放進度條 controls: { type: Boolean, value: false, }, // 是否顯示中間播放按鈕 showCenterPlayBtn: { type: Boolean, value: false, }, // 是否靜音 muted: { type: Boolean, value: true, }, // 是否顯示靜音按鈕 showMuteBtn: { type: Boolean, value: true, }, // 是否啟用手勢控制進度 enableProgressGesture: { type: Boolean, value: false, }, // 是否啟用手勢控制播放 enablePlayGesture: { type: Boolean, value: false, }, // 方向 direction: { type: Number, value: 0, }, // 指定開始播放時間,單位:秒 showPlayTime: { type: Number, value: 0, }, // 視頻id(唯一標識) videoId: { type: String, value: '', }, // 是否播放 play: { type: Boolean, value: false, }, // 是否循環播放 loop: { type: Boolean, value: true, }, }, data: { paly: false, // 是否播放 context: null, // 創建的視頻實例對象 }, lifetimes: { attached() { this.videObserve(); }, }, methods: { // 監聽視頻組件是否進入可視區域 videObserve() { this._observer = this.createIntersectionObserver({ observeAll: true, }); this._observer.relativeToViewport().observe(`#image_${this.data.videoId}`, (res) => { // res.intersectionRatio === 0表示不相交 if (res.intersectionRatio === 0) { this.setData({ play: false, }); } else { const ctx = this.data.context || wx.createVideoContext(`video_${this.data.videoId}`, this); if (ctx) { this.setData( { context: ctx, play: true, }, () => { // 加延時是為了等wxml節點創建完,拿到節點再播放,否則可能會出現播放失敗 setTimeout(() => { ctx.play(); }, 400); } ); } } }); }, }, });
視頻進入可視區域,才加載視頻開始播放。視頻離開可視區域,play=false,清除video標簽,即清除視頻。
目前視頻剛開始渲染時,會出現閃黑屏的效果。后續看看能否改成白色(白色比黑色好接受一些),也要看小程序視頻支持情況。
目前未限制一屏不能超過3個視頻同時播放。如果視頻寬高比較小,可能會出現一屏有很多視頻,從而卡頓或閃退。
感謝你能夠認真閱讀完這篇文章,希望小編分享的“微信小程序如何實現自動播放視頻模仿gif動圖效果”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。