时间:2023-04-23 16:42:02 | 来源:网站运营
时间:2023-04-23 16:42:02 来源:网站运营
小程序实战--仿bilibil(哔哩哔哩)小程序:摘要: 之前就被朋友安利使用小程序,最近接近了小程序,发现了它竟然带来了一场“大革命”。 简单说,它就是一个可以实现之前只能是原生态APP可以实现的效果和功能。比如说,一些酷炫的页面与转场,一些可以直接和手机硬件交互的功能,录音啊,拍视频啊,调用手机的重力感应啊,GPS啊等等。├── app.js├── app.json├── app.wxss├── utils│ └── util.js├── pages│ ├── common│ │ ├── header.wxml│ │ └── item.wxml│ ├── index│ │ ├── index.js│ │ ├── index.wxml│ │ └── index.wxss│ ├── selectColor│ │ ├── selectColor.js│ │ ├── selectColor.wxml│ │ └── selectColor.wxss│ ├── play│ │ ├── play.js│ │ ├── play.json│ │ ├── play.wxml│ │ └── play.wxss└── resources └── images
"pages":[ "pages/index/index", "pages/play/play", "pages/selectColor/selectColor" ],
<scroll-view class="scroll-view_H" scroll-x="true" style="width: 100%"> <text wx:for="{{section}}" wx:key="id" id="{{item.id}}" catchtap="handleTap" class="nav-name {{item.id == currentId ? 'nav-hover' : ''}}" style=" padding-right:{{topdistance}}px;padding-left:{{topdistance}}px">{{item.name}}</text> </scroll-view> </view> </view> <block wx:if="{{currentId == 1001}}"> <view class="slider-wrapper"> <swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" indicator-active-color="#EA6CAF"> <block wx:for="{{imgUrls}}"> <swiper-item> <navigator url="{{item.link}}" hover-class="navigator-hover"> <image src="{{item.url}}" class="slide-image" width="355" height="150" /> </navigator> </swiper-item> </block> </swiper> </view>onLoad: function (options) { // 页面初始化 options为页面跳转所带来的参数 this.setTopDistance(); this.setData({ stagePoint: util.stagePoint() }) if (this.data.currentId == 1001) { this.Page(); } else if (this.data.currentId == 1004) { this.channelPage(); } else if (this.data.currentId == 1003) { this.livePage(); } }
顶部导航栏实际就是利用scroll-view控件,给他绑定当前页面的id,当触发点击事件时,加载与该id匹配的信息。要注意的是一开始要给currentId一个页面的值,不然无法显示出来。Page({ inputValue: '', data: { isRandomColor: true, src: '', numberColor: "#ff0000", danmuList: [{ text: '这波不亏呀', color: '#ff0000', time: 1 }, { text: '大神666', color: '#00ff00', time: 2 }, { text: '今生无悔入fate', color: '#D9D919', time: 3 }, { text: '吾王赛高(。ò ∀ ó。)', color: '#C0D9D9', time: 4 } ], showModalStatus: false }, powerDrawer: function (e) { var currentStatu = e.currentTarget.dataset.statu; this.util(currentStatu) }, util: function (currentStatu) { /* 动画部分 */ // 第1步:创建动画实例 var animation = wx.createAnimation({ duration: 200, //动画时长 timingFunction: "linear", //线性 delay: 0 //0则不延迟 }); // 第2步:这个动画实例赋给当前的动画实例 this.animation = animation; // 第3步:执行第一组动画:Y轴偏移240px后(盒子高度是240px),停 animation.translateY(240).step(); // 第4步:导出动画对象赋给数据对象储存 this.setData({ animationData: animation.export() }) // 第5步:设置定时器到指定时候后,执行第二组动画 setTimeout(function () { // 执行第二组动画:Y轴不偏移,停 animation.translateY(0).step() // 给数据对象储存的第一组动画,更替为执行完第二组动画的动画对象 this.setData({ animationData: animation }) //关闭抽屉 if (currentStatu == "close") { wx.createVideoContext('myVideo').play(); this.setData( { showModalStatus: false, } ); } }.bind(this), 200) // 显示抽屉 if (currentStatu == "open") { wx.createVideoContext('myVideo').pause(); this.setData( { showModalStatus: true } ); } }, onLoad: function onLoad() { var _this = this; wx.getSystemInfo({ success: function success(res) { // video标签默认宽度300px、高度225px var windowWidth = res.windowWidth; var videoHeight = 225 / 300 * windowWidth; _this.setData({ videoWidth: windowWidth, videoHeight: videoHeight }); } }); }, onReady: function onReady(res) { this.videoContext = wx.createVideoContext('myVideo'); }, onShow: function onShow() { var _this = this; wx.getStorage({ key: 'numberColor', success: function success(res) { _this.setData({ numberColor: res.data }); } }); }, bindInputBlur: function (e) { this.inputValue = e.detail.value; } }})
参考了开源代码后,发现弹幕其实就是对字进行动画效果,沿着y轴滚动出现,利用计时器不停播放多组动画,抽屉效果也就是对遮罩层的利用,然后利用动画效果,将弹出栏显示出来,在制作时,记得让视频暂停,这样才能给用户一个好的体验,毕竟没有人想错过一部精彩的视频( ̄y▽ ̄)~onShareAppMessage: function onShareAppMessage() { wx.createVideoContext('myVideo').pause(); return { title: '【Fate全系列】英灵乱斗: 夺回未来的战争「Grand Order」', desc: '【Fate全系列】英灵乱斗: 夺回未来的战争「Grand Order」', path: '/pages/play/play', success: function (res) { // 转发成功 wx.showToast({ title: '成功', icon: 'succes', duration: 1000, mask: true }) wx.createVideoContext('myVideo').play(); }, fail: function (res) { // 转发失败 wx.showToast({ title: '失败', icon: 'fail', duration: 1000, mask: true }) wx.createVideoContext('myVideo').play(); } } }
这是我的写法,下面给出api内容,可以根据不同人的想法进行修改。onShareAppMessage: function () { return { title: '自定义分享标题', path: '/page/user?id=123' } }
但是这个id很多人不明白是什么id,之前我也不明白,后来发现这个id就是你要分享的这篇文章的id,但是一定要注意异步与同步的问题。关键词:程序,实战