<template>
<view class="container">
<view v-for="(item,index) in items" :key="index" :class="['touch-item', item.isTouchMove ? 'touch-move-active' : '']" @touchstart="touchstart($event)" @touchmove="touchmove(index, $event)">
<view class="content">{{item.content}}</view>
<view class="del" @tap="del(index)">删除</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
items: [],
startX: 0, //开始坐标
startY: 0
}
},
onLoad() {
let arr = [];
for (var i = 0; i < 10; i++) {
arr.push({
content: i + " 向左滑动删除哦,向左滑动删除哦,向左滑动删除哦,向左滑动删除哦,向左滑动删除哦",
isTouchMove: false //默认全隐藏删除
})
}
this.items = arr;
},
methods: {
//手指触摸动作开始 记录起点X坐标
touchstart: function (target) {
//开始触摸时 重置所有删除
this.items.forEach( (v, i) => {
if (v.isTouchMove)//只操作为true的
v.isTouchMove = false;
})
this.startX = target.changedTouches[0].clientX;
this.startY = target.changedTouches[0].clientY;
},
//滑动事件处理
touchmove: function (indexNum, target) {
let that = this,
index = indexNum,//当前索引
startX = that.startX,//开始X坐标
startY = that.startY,//开始Y坐标
touchMoveX = target.changedTouches[0].clientX,//滑动变化坐标
touchMoveY = target.changedTouches[0].clientY,//滑动变化坐标
//获取滑动角度
angle = that.angle({ X: startX, Y: startY }, { X: touchMoveX, Y: touchMoveY });
that.items.forEach(function (v, i) {
v.isTouchMove = false
//滑动超过30度角 return
if (Math.abs(angle) > 15) return;
if (i == index) {
if (touchMoveX > startX) //右滑
v.isTouchMove = false
else //左滑
v.isTouchMove = true
}
})
},
/**
* 计算滑动角度
* @param {Object} start 起点坐标
* @param {Object} end 终点坐标
*/
angle: function (start, end) {
var _X = end.X - start.X,
_Y = end.Y - start.Y
//返回角度 /Math.atan()返回数字的反正切值
return 360 * Math.atan(_Y / _X) / (2 * Math.PI);
},
//删除事件
del: function (index) {
this.items.splice(index, 1);
}
}
}
</script>
<style>
.touch-item {
font-size: 14px;
display: flex;
justify-content: space-between;
border-bottom:1px solid #ccc;
width: 100%;
overflow: hidden
}
.content {
width: 100%;
padding: 10px;
line-height: 22px;
margin-right:0;
-webkit-transition: all 0.4s;
transition: all 0.4s;
-webkit-transform: translateX(90px);
transform: translateX(90px);
margin-left: -90px
}
.del {
background-color: orangered;
width: 90px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #fff;
-webkit-transform: translateX(90px);
transform: translateX(90px);
-webkit-transition: all 0.4s;
transition: all 0.4s;
/* display: none; */
}
.touch-move-active .content,
.touch-move-active .del {
-webkit-transform: translateX(0);
transform: translateX(0);
}
</style>