移动端模仿QQ左滑删除

直接上代码
<template>
   <div class="car">
       <div class="carView" v-for="(x,index) in shopList" :key="x.goodsId" @touchstart='touchStart($event,index)' @touchmove='touchMove($event,index)' @touchend='touchEnd($event,index)' :style="isMove==index?deleteSlider:'transform:translateX(0px)'">
            <div class="goodsView">
                <img :src="imgUrls+x.backImg" alt="">
                <div class="goodsInfos">
                        <p>{{x.goodsName}}</p>
                        <p>¥{{x.salePrice}}</p>
                        <div class="numsView">
                            <span @click="reduce(x)"></span>
                            <input type="number" v-model="x.nums">
                            <span @click="increase(x)"></span>
                        </div>
                </div>
                <h1>x{{x.nums}}</h1>
            </div>
            <div class="remove" ref='remove' @click="shopList.splice(index,1);isMove=-1">删除</div>
       </div>
       <div class="footer">
               <span>合计:</span>
               <span>¥{{allPrice}}</span>
           <button @click="gobuy">结算</button>
       </div>
   </div>
</template>
<script>
export default {
  data() {
    return {
      shopList: [],
      imgUrls: "",
      startX: 0, // 开始pos
      endX: 0, // 结束pos
      moveX: 0, // 滑动时的pos
      disX: 0, // 滑动距离
      deleteSlider: "transform:translateX(0px)",
      isMove: -1,
      flag: true
    };
  },
  created() {
    this.imgUrls = this.imgUrl;
    this.shopList = JSON.parse(this.$route.query.shopList);
  },
  methods: {
  
    touchStart(ev, index) {
      this.isMove = index;
      ev = ev || event;
      //tounches类数组,等于1时表示此时有只有一只手指在触摸屏幕
      console.log(ev, "start", this.isMove);
      if (ev.touches.length == 1) {
        // 记录开始位置
        this.startX = ev.touches[0].clientX;
      }
    },
    touchMove(ev, index) {
      ev = ev || event;
      this.isMove = index;
      console.log(ev, "move");
      //获取删除按钮的宽度,此宽度为滑块左滑的最大距离
      let wd = this.$refs.remove[index].offsetWidth + 10;
      console.log(wd)zai
      if (ev.touches.length == 1) {
        // 滑动时距离浏览器左侧实时距离
        this.moveX = ev.touches[0].clientX;
        //起始位置减去 实时的滑动的距离,得到手指实时偏移距离
        this.disX = this.startX - this.moveX;
        //console.log(this.disX)
        // 如果是向右滑动或者不滑动,不改变滑块的位置
        if (this.disX < 0 || this.disX == 0) {
          this.deleteSlider = "transform:translateX(0px)";
        } else if (this.disX > 0) {
          // 大于0,表示左滑了,此时滑块开始滑动
          //具体滑动距离我取的是 手指偏移距离*5。
          this.deleteSlider = "transform:translateX(-" + wd + "px)";
        }
      }
    },
    touchEnd(ev) {
      ev = ev || event;
      let wd = this.$refs.remove.offsetWidth + 10;
      if (ev.changedTouches.length == 1) {
        let endX = ev.changedTouches[0].clientX;
        this.disX = this.startX - endX;
        //console.log(this.disX)
        //如果距离小于删除按钮一半,强行回到起点
        if (this.disX * 5 < wd / 2) {
          this.deleteSlider = "transform:translateX(0px)";
        } else {
          //大于一半 滑动到最大值
          this.deleteSlider = "transform:translateX(-" + wd + "px)";
        }
      }
    }
  }
};
</script>
<style lang='scss' scoped>
.car {
  width: 100%;
  height: 100%;
  background-color: #ececec;
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 120px;
  box-sizing: border-box;
  .carView {
    width: 890px;
    padding: 20px;

    box-sizing: border-box;
    transition: all 0.5s;
    overflow: hidden;
    .goodsView {
      width: 710px;
      height: 192px;
      background-color: #ffffff;
      box-shadow: 0px 8px 9px 0px rgba(16, 64, 86, 0.22);
      border-radius: 20px;
      position: relative;
      float: left;
      img {
        width: 140px;
        height: 140px;
        padding: 6px 30px;
        border-radius: 14px;
        border: solid 1px #eeeeee;
        float: left;
        margin-left: 20px;
        margin-top: 20px;
      }
      .goodsInfos {
        float: left;
        padding-top: 20px;
        margin-left: 20px;
        p {
          line-height: 40px;
          text-align: left;
        }
        p:nth-child(1) {
          font-family: PingFang-SC-Bold;
          font-size: 28px;
          font-weight: normal;
          font-stretch: normal;
          letter-spacing: 0px;
          color: #333333;
        }
        p:nth-child(2) {
          font-family: PingFang-SC-Bold;
          font-size: 30px;
          font-weight: bold;
          font-stretch: normal;
          letter-spacing: 0px;
          color: #ff000d;
          opacity: 0.8;
        }
        .numsView {
          margin-top: 20px;
          span {
            width: 36px;
            height: 36px;
            border-radius: 4px;
            color: white;
            font-size: 36px;
            line-height: 36px;
            display: inline-block;
            vertical-align: middle;
          }
          span:nth-child(1) {
            background: url("../assets/jian.png") center center no-repeat;
            background-size: 30px 36px;
            background-color: #dcdcdc;
          }
          span:nth-child(3) {
            background: url("../assets/jia1.png") center center no-repeat;
            background-size: 34px 34px;
            background-color: #00a0e9;
          }
          input {
            width: 100px;
            height: 36px;
            background-color: #eeeeee;
            border-radius: 4px;
            border: none;
            outline: 0;
            vertical-align: middle;
            margin: 0 20px;
            text-align: center;
          }
        }
      }
      h1 {
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 36px;
        font-weight: normal;
        font-stretch: normal;
        line-height: 70px;
        letter-spacing: 0px;
        color: #333333;
      }
    }
    .remove {
      float: left;
      width: 120px;
      height: 192px;
      background-color: rgb(224, 28, 28);
      box-shadow: 0px 8px 9px 0px rgba(16, 64, 86, 0.22);
      border-radius: 20px;
      margin-left: 20px;
      color: white;
      text-align: center;
      line-height: 192px;
    }
  }
}
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: white;
  span {
    float: left;
  }
  span:nth-child(1) {
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 100px;
    letter-spacing: 0px;
    color: #333333;
    margin-left: 40px;
  }
  span:nth-child(2) {
    font-size: 48px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 100px;
    letter-spacing: 0px;
    color: #e41e28;
  }
  button {
    float: right;
    width: 280px;
    height: 100px;
    background-color: #00a0e9;
    font-size: 36px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 100px;
    letter-spacing: 0px;
    color: #ffffff;
    outline: 0;
    border: none;
  }
}
</style>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342