前端经验

微信小程序checkbox多选框的写法

开发微信小程序时会发现H5的复选框失效了,原因是微信小程序自带复选框标签,虽然小程序与H5很多时候标签都是公用的,但也有部分区别,就比如现在的checkbox多选框问题,具体请看...

前端经验

微信小程序实现音乐播放器

今天继续玩小程序的api,看着别人例子跟着做一个小程序,留下一个脚印吧。末尾附上github源码地址。实现以下微信小程序的音乐播放器,先看下效果图 界面做的确实挺丑的,先上wx...

前端经验

微信小程序音乐播放器开发

这篇文章上一版本是用audio组件开发的播放器,随后反应音频加载速度慢的问题 又用小程序内置的背景音乐播放的方法写了一遍,逻辑是一样的逻辑,希望对大家有所帮助! view class...

前端经验

小程序api实现promise封装过程解析

这篇文章主要介绍了小程序api实现promise封装过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 微信小程序和支付宝小...

前端经验

mpvue微信小程序开发之实现一个弹幕评论

弹幕区的页面: div class = content v-show= doommData.length div class = textLeft /div div class = textItem p class = text aon v- if = item.display v- for = (item,index) in doommData :key= index :id= item.id :style= {animation-duratio...

微信小程序

uni-app微信小程序滑动事件

view class = relative @touchmove = handletouchmove @touchstart = handletouchstart @touchend = handletouchend /view data () { return { flag : 0 , text : , lastX : 0 , lastY : 0 }} methods: { handletouchmove : function ( event ) { // console....