微信小程序 側(cè)滑刪除(左滑刪除)
更新時(shí)間:2017年05月23日 14:16:40 作者:王慧永
這篇文章主要介紹了微信小程序 側(cè)滑刪除(左滑刪除)的相關(guān)資料,需要的朋友可以參考下
微信小程序 側(cè)滑刪除(左滑刪除)
如圖所示,demo是小程序的側(cè)滑刪除,這個(gè)是我在別人寫的例子的基礎(chǔ)上修改的。代碼如下
js文件代碼:
// pages/leftSwiperDel/index.js var initdata = function (that) { var list = that.data.list for (var i = 0; i < list.length; i++) { list[i].txtStyle = "" } that.setData({ list: list }) } Page({ data: { delBtnWidth: 180,//刪除按鈕寬度單位(rpx) list: [ { txtStyle: "", icon: "/images/qcm.png", txt: "指尖快遞" }, { txtStyle: "", icon: "/images/qcm.png", txt: "指尖快遞" }, { txtStyle: "", icon: "/images/qcm.png", txt: "指尖快遞" }, { txtStyle: "", icon: "/images/qcm.png", txt: "指尖快遞" }, { txtStyle: "", icon: "/images/qcm.png", txt: "指尖快遞" }, { txtStyle: "", icon: "/images/qcm.png", txt: "指尖快遞" }, { txtStyle: "", icon: "/images/qcm.png", txt: "指尖快遞" }, { txtStyle: "", icon: "/images/qcm.png", txt: "指尖快遞" }, { txtStyle: "", icon: "/images/qcm.png", txt: "指尖快遞" }, { txtStyle: "", icon: "/images/qcm.png", txt: "指尖快遞" }, { txtStyle: "", icon: "/images/qcm.png", txt: "指尖快遞" }, ] }, onLoad: function (options) { // 頁(yè)面初始化 options為頁(yè)面跳轉(zhuǎn)所帶來(lái)的參數(shù) this.initEleWidth(); }, onReady: function () { // 頁(yè)面渲染完成 }, onShow: function () { // 頁(yè)面顯示 }, onHide: function () { // 頁(yè)面隱藏 }, onUnload: function () { // 頁(yè)面關(guān)閉 }, touchS: function (e) { if (e.touches.length == 1) { this.setData({ //設(shè)置觸摸起始點(diǎn)水平方向位置 startX: e.touches[0].clientX }); } }, touchM: function (e) { var that = this initdata(that) if (e.touches.length == 1) { //手指移動(dòng)時(shí)水平方向位置 var moveX = e.touches[0].clientX; //手指起始點(diǎn)位置與移動(dòng)期間的差值 var disX = this.data.startX - moveX; var delBtnWidth = this.data.delBtnWidth; var txtStyle = ""; if (disX == 0 || disX < 0) {//如果移動(dòng)距離小于等于0,文本層位置不變 txtStyle = "left:0px"; } else if (disX > 0) {//移動(dòng)距離大于0,文本層left值等于手指移動(dòng)距離 txtStyle = "left:-" + disX + "px"; if (disX >= delBtnWidth) { //控制手指移動(dòng)距離最大值為刪除按鈕的寬度 txtStyle = "left:-" + delBtnWidth + "px"; } } //獲取手指觸摸的是哪一項(xiàng) var index = e.target.dataset.index; var list = this.data.list; list[index].txtStyle = txtStyle; //更新列表的狀態(tài) this.setData({ list: list }); } }, touchE: function (e) { if (e.changedTouches.length == 1) { //手指移動(dòng)結(jié)束后水平位置 var endX = e.changedTouches[0].clientX; //觸摸開始與結(jié)束,手指移動(dòng)的距離 var disX = this.data.startX - endX; var delBtnWidth = this.data.delBtnWidth; //如果距離小于刪除按鈕的1/2,不顯示刪除按鈕 var txtStyle = disX > delBtnWidth / 2 ? "left:-" + delBtnWidth + "px" : "left:0px"; //獲取手指觸摸的是哪一項(xiàng) var index = e.target.dataset.index; var list = this.data.list; list[index].txtStyle = txtStyle; //更新列表的狀態(tài) this.setData({ list: list }); } }, //獲取元素自適應(yīng)后的實(shí)際寬度 getEleWidth: function (w) { var real = 0; try { var res = wx.getSystemInfoSync().windowWidth; var scale = (750 / 2) / (w / 2);//以寬度750px設(shè)計(jì)稿做寬度的自適應(yīng) // console.log(scale); real = Math.floor(res / scale); return real; } catch (e) { return false; // Do something when catch error } }, initEleWidth: function () { var delBtnWidth = this.getEleWidth(this.data.delBtnWidth); this.setData({ delBtnWidth: delBtnWidth }); }, //點(diǎn)擊刪除按鈕事件 delItem: function (e) { var that = this wx.showModal({ title: '提示', content: '是否刪除?', success: function (res) { if (res.confirm) { //獲取列表中要?jiǎng)h除項(xiàng)的下標(biāo) var index = e.target.dataset.index; var list = that.data.list; //移除列表中下標(biāo)為index的項(xiàng) list.splice(index, 1); //更新列表的狀態(tài) that.setData({ list: list }); } else { initdata(that) } } }) } })
wxss文件代碼:
/* pages/leftSwiperDel/index.wxss */ view{ box-sizing: border-box; } .item-box{ width: 700rpx; margin: 0 auto; padding:40rpx 0; } .items{ width: 100%; } .item{ position: relative; border-top: 2rpx solid #eee; height: 120rpx; line-height: 120rpx; overflow: hidden; } .item:last-child{ border-bottom: 2rpx solid #eee; } .inner{ position: absolute; top:0; } .inner.txt{ background-color: #fff; width: 100%; z-index: 5; padding:0 10rpx; transition: left 0.2s ease-in-out; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; } .inner.del{ background-color: #e64340; width: 180rpx;text-align: center; z-index: 4; right: 0; color: #fff } .item-icon{ width: 64rpx; vertical-align: middle; margin-right: 16rpx } .thumb{ width: 200px; height: 200px; -webkit-overflow-scrolling: touch; overflow: scroll; }
wxml文件代碼:
<view class="item-box"> <view class="items"> <view wx:for="{{list}}" wx:key="{{index}}" class="item"> <view bindtouchstart="touchS" bindtouchmove="touchM" bindtouchend="touchE" data-index="{{index}}" style="{{item.txtStyle}}" class="inner txt"> <image class="item-icon" mode="widthFix" src="{{item.icon}}"></image>{{index}}{{item.txt}}</view> <view data-index="{{index}}" bindtap = "delItem" class="inner del">刪除</view> </view> </view> </view>
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
相關(guān)文章
微信小程序 搖一搖抽獎(jiǎng)簡(jiǎn)單實(shí)例實(shí)現(xiàn)代碼
這篇文章主要介紹了微信小程序 搖一搖抽獎(jiǎng)簡(jiǎn)單實(shí)例實(shí)現(xiàn)代碼的相關(guān)資料,這里實(shí)現(xiàn)搖一搖抽獎(jiǎng)的功能,需要的朋友可以參考下2017-01-01JS中 querySelector 與 getElementById 方法區(qū)別
這篇文章主要介紹了JavaScript中 querySelector 與 getElementById 方法與區(qū)別,圍繞querySelector 與 getElementById 的相關(guān)資料展開文章內(nèi)容,需要的朋友可以參考一下2021-10-10JS輕量級(jí)函數(shù)式編程實(shí)現(xiàn)XDM一
這篇文章主要為大家介紹了JS輕量級(jí)函數(shù)式編程實(shí)現(xiàn)XDM示例詳解第1/3篇,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-06-06微信小程序開發(fā)之相冊(cè)選擇和拍照詳解及實(shí)例代碼
這篇文章主要介紹了微信小程序開發(fā)之相冊(cè)選擇和拍照詳解及實(shí)例代碼的相關(guān)資料,需要的朋友可以參考下2017-02-02JavaScript執(zhí)行機(jī)制詳細(xì)介紹
這篇文章主要介紹了JavaScript執(zhí)行機(jī)制,想要搞懂JavaScript執(zhí)行機(jī)制,便與進(jìn)程與線程的概念脫不了干系,下面我們就來(lái)看看這JavaScript執(zhí)行機(jī)制的具體介紹吧,需要的朋友可以參考一下2021-12-12