Le contenu de cet article concerne des exemples de mini-programmes : comment personnaliser l'actualisation déroulante. Il a une certaine valeur de référence. Les amis dans le besoin peuvent s'y référer.
Composant personnalisé :
js:
// components/test/test.js Component({ /** * 组件的属性列表 */ properties: { }, /** * 组件的初始数据 */ data: { scrollHeight: 0, startY: 0, tips: '下拉刷新', isRefreshing: false }, /** * 组件的方法列表 */ methods: { end: function(e) { if (this.data.isRefreshing) { return } if (this.data.scrollHeight >= 50) { this.setData({ scrollHeight: 50, tips: '正在刷新', isRefreshing: true }) this.triggerEvent('onRefresh') } else { this.setData({ scrollHeight: 0, tips: '下拉刷新' }) } }, move: function(e) { if (this.data.isRefreshing) { return } var that = this; var moveY = e.touches[0].pageY; var dY = moveY - that.data.startY; console.log(dY); if (dY >= 50 && dY <= 80) { this.setData({ tips: '松开加载', scrollHeight: dY }) } else if (dY > 80) { this.setData({ tips: '松开加载', scrollHeight: 80 }) } else { this.setData({ tips: '下拉刷新', scrollHeight: dY }) } }, start: function(e) { this.data.startY = e.touches[0].pageY; }, stopRefresh: function() { this.setData({ isRefreshing: false, scrollHeight: -50 }) }, } })
wxml:
<!--components/test/test.wxml--> <view class='loading-container' bindtouchend='end' bindtouchmove='move' bindtouchstart='start' style='margin-top:{{scrollHeight}}px;transform:translateY(-50px);' > <view class="weui-loadmore" style='margin:0 auto;padding:1.5em 0;'> <view class="weui-loading"></view> <view class="weui-loadmore__tips">{{tips}}</view> </view> </view>
wxss : Peu importe que weui soit référencé ou non . Très simple
@import '/pages/common/weui.wxss'; page{ height: 100%; } .loading-container{ height: 100%; }
wxml en pages :
<loadmore style='height:100%;' bindonRefresh='onRefresh' id='loadmore'></loadmore>
js://refresh méthode de rappel
onRefresh: function() { var that = this; setTimeout(function(){ that.selectComponent("#loadmore").stopRefresh(); },3000) }, json: { "enablePullDownRefresh": false, "usingComponents":{ "loadmore":"../../components/test/test" } }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!