极乐门资源网 Design By www.ioogu.com
一直以为抖音短视频切换假如用小程序做的话应该是比较简单的,直接用swiper实现就好,但在实际写的过程中才发现没那么简单,要控制的逻辑还是挺多的。
还是先看效果
体验路径
自定义组件系列》》仿抖音短视频切换
代码逻辑
直接调用自定义的swiper组件就好
调用代码
js
const videoList = [] Page({ data: { videoList, activeId:2, isPlaying:true }, onLoad() { var that = this wx.getSystemInfo({ success: function(res) { that.setData({ systemInfo:res, menuButtonBoundingClientRect: wx.getMenuButtonBoundingClientRect(), }) console.log(res) }, }) this.setData({ videoList: [{ id: 1, title: "黄渤", desc: "中国女排发布会,黄渤与巩俐中国女排发布会,黄渤与巩俐", url: "https://6e6f-normal-env-ta6pc-1300924598.tcb.qcloud.la/video-swiper/1589851354869410.mp4" }, { id: 2, title: "莱万多夫斯基", desc: "莱万多夫斯基逆天五子登科", url: "https://6e6f-normal-env-ta6pc-1300924598.tcb.qcloud.la/video-swiper/1589851322674828.mp4" }, { id: 3, title: "驾考那些事", desc: "半坡起步是多难", url: "https://6e6f-normal-env-ta6pc-1300924598.tcb.qcloud.la/video-swiper/1589851312271309.mp4" }, { id: 4, title: "小美女", desc: "蹦蹦跳跳", url: "https://6e6f-normal-env-ta6pc-1300924598.tcb.qcloud.la/video-swiper/1589851307588534.mp4" }, { id: 5, title: "黄渤", desc: "中国女排发布会,黄渤与巩俐中国女排发布会,黄渤与巩俐", url: "https://6e6f-normal-env-ta6pc-1300924598.tcb.qcloud.la/video-swiper/1589851354869410.mp4" }, { id: 6, title: "莱万多夫斯基", desc: "莱万多夫斯基逆天五子登科", url: "https://6e6f-normal-env-ta6pc-1300924598.tcb.qcloud.la/video-swiper/1589851322674828.mp4" }, { id: 7, title: "驾考那些事", desc: "半坡起步是多难", url: "https://6e6f-normal-env-ta6pc-1300924598.tcb.qcloud.la/video-swiper/1589851312271309.mp4" }, { id: 8, title: "小美女", desc: "蹦蹦跳跳", url: "https://6e6f-normal-env-ta6pc-1300924598.tcb.qcloud.la/video-swiper/1589851307588534.mp4" }, { id: 9, title: "黄渤", desc: "中国女排发布会,黄渤与巩俐中国女排发布会,黄渤与巩俐", url: "https://6e6f-normal-env-ta6pc-1300924598.tcb.qcloud.la/video-swiper/1589851354869410.mp4" }, { id: 10, title: "莱万多夫斯基", desc: "莱万多夫斯基逆天五子登科", url: "https://6e6f-normal-env-ta6pc-1300924598.tcb.qcloud.la/video-swiper/1589851322674828.mp4" }, { id: 11, title: "驾考那些事", desc: "半坡起步是多难", url: "https://6e6f-normal-env-ta6pc-1300924598.tcb.qcloud.la/video-swiper/1589851312271309.mp4" }, { id: 12, title: "小美女", desc: "蹦蹦跳跳", url: "https://6e6f-normal-env-ta6pc-1300924598.tcb.qcloud.la/video-swiper/1589851307588534.mp4" }] }) }, onPlay(e) { // console.log("开始播放",e) }, onShowPause(e){ this.setData({ isPlaying: false }) }, onHidePause(e){ this.setData({ isPlaying: true }) }, onPause(e) { }, onEnded(e) { // console.log(e) }, onError(e) { }, onWaiting(e) { }, onTimeUpdate(e) { }, onProgress(e) { }, onChange(e) { console.log(e) console.log("id",e.detail.activeId) this.setData({ activeId:e.detail.activeId }) }, onLoadedMetaData(e) { console.log('LoadedMetaData', e) }, go2Home() { wx.navigateBack({ delta: 1, }) }, })
wxml
<mp-video-swiper class="video-swiper" video-list="{{videoList}}" bindplay="onPlay" bindpause="onPause" bindtimeupdate="onTimeUpdate" bindended="onEnded" binderror="onError" bindwaiting="onWaiting" bindprogress="onProgress" bindloadedmetadata="onLoadedMetaData" bindchange="onChange" bindshowPause="onShowPause" bindhidePause="onHidePause"></mp-video-swiper> <image wx:if="{{!isPlaying}}" class="imagePlayer" style="left:{{systemInfo.screenWidth/2-40/2}}px;top:{{systemInfo.screenHeight/2-40/2}}px" src="/UploadFiles/2021-04-02/player.png">wxss
@import '../common.wxss'; page{ background-color: black; height: 100%; } mp-video-swiper { width: 100%; height: 100%; } .imagePlayer{ width: 40px; height: 40px; position: fixed; z-index: 1000; opacity: 0.6 } .viewFloat{ position: fixed; display: flex; z-index: 100; width: 500rpx; bottom: 60px; color: white; margin:20rpx; flex-direction: column } .videoTitle{ font-size: 18px; font-weight: 500; } .videoDes{ font-size: 14px; } .viewTabContainer{ position: fixed; display: flex; justify-content: space-around; align-items: center; flex-direction: row; width: 100%; height: 50px; border-top: 0.5px solid white; bottom: 0; } .viewTab{ color: white; }总结
极乐门资源网 Design By www.ioogu.com
极乐门资源网
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
极乐门资源网 Design By www.ioogu.com
暂无微信小程序仿抖音短视频切换效果的实例代码的评论...
更新日志
2024年11月15日
2024年11月15日
- 丁红《女儿情》[DTS-WAV]
- 陈惠婷.2017-Voyager3【亚神音乐】【FLAC分轨】
- 群星.2001-华纳歌声魅影【华纳】【WAV+CUE】
- 张雨生.2016-雨后星空2CD【丰华】【WAV+CUE】
- 李雨寰《Break Free》[FLAC/分轨][533MB]
- 廖也欧《面朝大海》[320K/MP3][18.35MB]
- 廖也欧《面朝大海》[Hi-Res][24bit 48kHz][FLAC/分轨][170.14MB]
- s13T1夺冠五人名单都有谁 s13T1夺冠五人名单一览
- 英雄联盟T1战队队长都有谁 T1战队所有队长介绍
- skt历届战队成员都有哪些 skt历届战队成员名单盘点
- 妙音唱片《大热唱片3》[WAV+CUE]
- 费玉清《跟着地球旋转》滚石时代经典复刻[正版原抓WAV+CUE]
- 罗文甄妮-射雕英雄传(AMCD)(限量版)[WAV+CUE]
- 《巫师4》定档2025再添佐证:参演人员曝光 老将回归
- 辣眼睛 美女COS《黑神话:悟空》比基尼版金池长老