聲明:
- 根據(jù)資料配合項目需求進(jìn)行了一點(diǎn)修改,原文地址
展示圖例
頁面部分
頁面中‘list’部分定位在上層暴拄,滑動上層漏出下層右側(cè)的‘刪除’按鈕漓滔,通過循環(huán)‘a(chǎn)rr’,添加txtStyle樣式乖篷,改變滑動狀態(tài)
<view class='box' wx:for="{{arr}}" wx:key='*this'>
<view class='list'
bindtouchstart="touchS"
bindtouchmove="touchM"
bindtouchend="touchE"
style="{{item.txtStyle}}"
data-index="{{index}}">
{{item.title}}
</view>
<view class='btn'
catchtap="delOrder"
data-index='{{index}}'
data-id='{{item.id}}'>
刪除
</view>
</view>
JS部分
‘delBtnWidth’向左滑動的距離設(shè)定為刪除按鈕的寬度
‘openDelIdx’記錄已經(jīng)滑動過滑塊的index右蒲,在滑動下一個條目或者點(diǎn)擊刪除按鈕時還原之前滑動的樣式
Page({
data: {
arr: [],
openDelIdx: 0, // 記錄滑動過條目的index
delBtnWidth: 150//刪除按鈕寬度單位(rpx)
},
/**
* 還原之前滑動樣式
*/
clearLeftMove() {
var list = this.data.arr;
list[this.data.openDelIdx].txtStyle = 'left:0px'
this.setData({
arr: list
});
},
/**
* 手指觸摸開始
*/
touchS: function (e) {
//判斷是否只有一個觸摸點(diǎn)
if (e.touches.length == 1) {
this.clearLeftMove();
this.setData({
//記錄觸摸起始位置的X坐標(biāo)
startX: e.touches[0].clientX
});
}
},
/**
* 手指觸摸滑動
*/
touchM: function (e) {
var that = this;
if (e.touches.length == 1) {
//記錄觸摸點(diǎn)位置的X坐標(biāo)
var moveX = e.touches[0].clientX;
//計算手指起始點(diǎn)的X坐標(biāo)與當(dāng)前觸摸點(diǎn)的X坐標(biāo)的差值
var disX = that.data.startX - moveX;
//delBtnWidth 為右側(cè)按鈕區(qū)域的寬度
var delBtnWidth = that.data.delBtnWidth;
var txtStyle = "";
if (disX == 0 || disX < 0) {//如果移動距離小于等于0惰说,文本層位置不變
txtStyle = "left:0";
} else if (disX > 0) {//移動距離大于0捌臊,文本層left值等于手指移動距離
txtStyle = "left:-" + disX + "rpx";
if (disX >= delBtnWidth) {
//控制手指移動距離最大值為刪除按鈕的寬度
txtStyle = "left:-" + delBtnWidth + "rpx";
}
}
//獲取手指觸摸的是哪一個item
var index = e.currentTarget.dataset.index;
var list = that.data.arr;
//將拼接好的樣式設(shè)置到當(dāng)前item中
list[index].txtStyle = txtStyle;
//更新列表的狀態(tài)
this.setData({
arr: list
});
}
},
/**
* 手指觸摸結(jié)束
*/
touchE: function (e) {
var that = this;
if (e.changedTouches.length == 1) {
//手指移動結(jié)束后觸摸點(diǎn)位置的X坐標(biāo)
var endX = e.changedTouches[0].clientX;
//觸摸開始與結(jié)束或链,手指移動的距離
var disX = that.data.startX - endX;
var delBtnWidth = that.data.delBtnWidth;
//如果距離小于刪除按鈕的1/2,不顯示刪除按鈕
var txtStyle = disX > delBtnWidth / 2 ? "left:-" + delBtnWidth + "rpx" : "left:0";
//獲取手指觸摸的是哪一項
var index = e.currentTarget.dataset.index;
var list = that.data.arr;
list[index].txtStyle = txtStyle;
//更新列表的狀態(tài)
that.setData({
openDelIdx: index,
arr: list
});
}
},
/**
* 刪除訂單
*/
delOrder: function (e) {
var order_id = e.currentTarget.dataset.id;
var index = e.currentTarget.dataset.index;
var that = this;
that.clearLeftMove(); // 滑動恢復(fù)原狀
wx.showModal({
title: '提示',
content: '確認(rèn)刪除這個分類么鲸沮?',
success(res) {
if (res.confirm) {
// 此處添加刪除請求
that.delItem(index);
} else if (res.cancel) {
}
}
})
},
/**
* 刪除頁面item
*/
delItem: function (index) {
var list = this.data.arr
list.splice(index, 1);
this.setData({
arr: list
});
},
onLoad: function () {
var list = [
{ id: 1, title: 'aaa' },
{ id: 2, title: 'bbb' },
{ id: 3, title: 'ccc' },
{ id: 4, title: 'ddd' },
{ id: 5, title: 'eee' }
];
this.setData({
arr: list
});
},
})
CSS部分
.box{
position: relative;
border-bottom:1rpx solid #EAE8E8;
height: 118rpx;
display: flex;
flex-direction: row;
justify-content: flex-end;
}
.list{
padding: 16rpx 28rpx;
font-size: 32rpx;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
line-height: 86rpx;
transition: left 0.2s ease-in-out;
z-index: 5;
background-color: #fff;
box-sizing:border-box;
}
.btn{
width: 150rpx;
height: 100%;
line-height: 118rpx;
background-color: #FF5555;
color: #fff;
font-size: 32rpx;
text-align: center;
}