需求背景:
在⼩程序页⾯插⼊gif动态图,但gif图⼀般体积⽐较⼤,转⽽⽤⾃动播放视频的模式来模拟gif图的效果,丰富页⾯展⽰。⾃动播放的视频,⽆控制条,⽆声⾳,⾃动循环播放。
技术难点:
状态背景图更改因为⼩程序在同⼀个页⾯,存在多个视频时(建议不超过3个视频),会出现卡顿甚⾄闪退的情况。
…
⽅案:
参考⼩程序社区讨论⽅案,当视频未出现在屏幕可视区域时,⽤图⽚占位,出现在屏幕中,把图⽚替换成视频,并且⾃动播放。
代码注意点:
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="{{enablePlay </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 = ateIntersectionObserver({
observeAll: true,
});
this._lativeToViewport().observe(`#image_${this.data.videoId}`, (res) => {
// res.intersectionRatio === 0表⽰不相交
if (res.intersectionRatio === 0) {
this.setData({
play: false,
});
} else {
const ctx = t || 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动图内容请搜索以前的⽂章或继续浏览下⾯的相关⽂章希望⼤家以后多多⽀持!
发布评论