
微信小程序
zwz1110
这个作者很懒,什么都没留下…
展开
-
微信小程序虚拟无限列表,超长数据渲染
<view class="lsmap" bindtouchstart="bindtouchstart" bindtouchmove="bindtouchmove" bindtouchend="bindtouchend"> <block wx:for="{{List}}" wx:key="index"> <view class="itemleft" wx:if="{{item.type==1}}">{{item.title}}</view&...原创 2021-07-28 15:40:41 · 1310 阅读 · 0 评论 -
微信小程序沉浸式状态栏
<view class='nav-wrap' style="background-color:{{bgColor}};"> <view style="height:{{statusBarHeight}}px;"></view> <view class='content'> <view class="title">{{title}}</view> <view class='back' bindtap='back'> <image src="../原创 2019-05-26 12:39:28 · 5472 阅读 · 1 评论 -
微信小程序上传图片
onchooseimage: function() {var that = this;wx.chooseImage({count: 1, // 默认9sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认...原创 2019-06-13 10:38:39 · 336 阅读 · 0 评论 -
小程序沉浸式导航后续
<view class='page-wrapper index-page-wrapper' style='top:{{statusHeight}}px'><view class="top"></view><view class="body"></view><view class="bottom">&l...原创 2019-08-22 15:21:18 · 391 阅读 · 0 评论 -
微信小程序防微信聊天第一版未写样式只有功能 后期完善样式
var content;Page({ /** * 页面的初始数据 */ data: { list:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18], itemID:"", }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { ...原创 2019-09-03 18:04:29 · 181 阅读 · 0 评论