微信小程序實現自動播放視頻模仿gif動圖效果實例

需求背景:

在小程序頁面插入gif動態圖,但gif圖一般體積比較大,轉而用自動播放視頻的模式來模擬gif圖的效果,豐富頁面展示。自動播放的視頻,無控制條,無聲音,自動循環播放。

技術難點:

因為微信小程序在同一個頁面,存在多個視頻時(建議不超過3個視頻),會出現卡頓甚至閃退的情況。
developers.weixin.qq.com/community/d…

方案:

參考小程序社區討論方案,當視頻未出現在屏幕可視區域時,用圖片占位,出現在屏幕中,把圖片替換成視頻,並且自動播放。

代碼註意點:

video標簽用wx:if來控制,image標簽用visibility樣式來占位。

<view class="container" style="width: {{videoWidth}}rpx;height: {{videoHeight}}rpx">
  <image class="image" style="visibility: {{play ? 'hidden' : 'visible'}};" 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動圖效果的文章就介紹到這瞭,更多相關小程序自動播放視頻模仿gif動圖內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: