Anime+Vue+svg<弧形拖拽效果>

效果图:

拖拽.gif

参考效果地址:http://www.jq22.com/yanshi4688

image.png

此篇文章是我根据效果,自己仿写的效果,并没有直接使用以上地址的代码~~(主要是下了也看不懂😂)
这里大致告诉大家怎么实现这种效果的,其他相关内容小伙伴们可以根据需要,自行扩展👍
标题已经说的很明白了,用的 vue+svg+animejs,svg图片需要自己绘制,不太会animejs的可以自行百度,去看人家的官方文档。
需要绘制的图片为4张:

//1.初始状态
d="m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c0.08772,-132.90296 0.17544,-265.80592 0.26316,-398.70888z"
//2.拉伸时状态
d="m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c132.71929,-76.58717 132.2807,-323.17434 0.26316,-398.70888z"
//3.最终状态
d= "m158.1579,0.7648l-157.63158,-0.23848l0,398.94736l156.90516,0c0.24214,-132.90296 0.48428,-265.80592 0.72642,-398.70888z"
//4.恢复到初始时的状态
d="m158.1579,0.7648l-157.63158,-0.23848l0,398.94736l156.90516,0c-90.81049,-132.37664 -97.93677,-266.85855 0.72642,-398.70888z"
image.png

整体连贯起来就是这样的:


拖拽1.gif

🎈简单的animejs,就能实现这种动画变换过程

anime({
      targets: "#svg_1",
      d: [
        {
          value:
            "m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c0.08772,-132.90296 0.17544,-265.80592 0.26316,-398.70888z"
        },
        {
          value:
            "m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c132.71929,-76.58717 132.2807,-323.17434 0.26316,-398.70888z"
        },
        {
          value:
            "m158.1579,0.7648l-157.63158,-0.23848l0,398.94736l156.90516,0c0.24214,-132.90296 0.48428,-265.80592 0.72642,-398.70888z"
        },
        {
          value:
            "m158.1579,0.7648l-157.63158,-0.23848l0,398.94736l156.90516,0c-90.81049,-132.37664 -97.93677,-266.85855 0.72642,-398.70888z"
        },
        {
          value:
            "m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c0.08772,-132.90296 0.17544,-265.80592 0.26316,-398.70888z"
        }
      ],
      duration: 5000,
      loop: 1
    });

🎈这个原理大致了解之后,接下来就是在哪个过程中调用哪个阶段就可以了,详细的代码上都有注释的,想要记得更加深刻的最好自己动手操作~~~🌭

代码如下:
<template>
  <div class="overall" @click="close_path" @mousedown="m_d_path" @mouseup="m_u_path">
    <div class="box">
      <svg viewBox="0 0 300 400">
        <path
          @mousemove="m_m_path"
          id="svg_1"
          d="m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c0.08772,-132.90296 0.17544,-265.80592 0.26316,-398.70888z"
        />
      </svg>
      <div class="chat_box" @click.prevent="path_open == true">
        <div class="chat_msg" v-for="(m,index) in 20" :key="index">
          <span>Massage_{{index+1}}</span>
          <span class="dot"></span>
        </div>
      </div>
    </div>
  </div>
</template>

<script>
import anime from "animejs/lib/anime.es.js";
export default {
  watch: {
    path_open(newVal, oldVal) {
      if (!newVal) {
        anime({
          targets: "#svg_1",
          d: [
            {
              value:
                "m158.1579,0.7648l-157.63158,-0.23848l0,398.94736l156.90516,0c-90.81049,-132.37664 -97.93677,-266.85855 0.72642,-398.70888z",
              duration: 100,
              easing: "easeInQuad"
            },
            {
              value:
                "m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c0.08772,-132.90296 0.17544,-265.80592 0.26316,-398.70888z",
              duration: 300
            }
          ],
          begin: function() {
            anime({
              targets: ".chat_box",
              translateX: [0, -160],
              opacity: 0,
              duration: 0
            });
          }
        });
      }
    }
  },
  data() {
    return {
      box_el: null, //容器标签
      path_el: null, //获取 path 标签
      down_m_x: 0, //鼠标点击时的坐标
      click_on: false, //是否处于拖拉状态
      path_open: false, //左侧拉伸框是否打开
      stretch: 0, //拉伸长度
      pathList: [
        //默认状态
        {
          value:
            "m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c0.08772,-132.90296 0.17544,-265.80592 0.26316,-398.70888z"
        },
        //拉伸时状态
        {
          value:
            "m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c132.71929,-76.58717 132.2807,-323.17434 0.26316,-398.70888z"
        },
        //最终状态
        {
          value:
            "m158.1579,0.7648l-157.63158,-0.23848l0,398.94736l156.90516,0c0.24214,-132.90296 0.48428,-265.80592 0.72642,-398.70888z"
        },
        //回收时状态
        {
          value:
            "m158.1579,0.7648l-157.63158,-0.23848l0,398.94736l156.90516,0c-90.81049,-132.37664 -97.93677,-266.85855 0.72642,-398.70888z"
        }
      ]
    };
  },
  mounted() {
    let _this = this;
    _this.path_el = document.querySelector("#svg_1");
    _this.box_el = document.querySelector(".box");
    // anime({
    //   targets: "#svg_1",
    //   d: [
    //     {
    //       value:
    //         "m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c0.08772,-132.90296 0.17544,-265.80592 0.26316,-398.70888z"
    //     },
    //     {
    //       value:
    //         "m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c132.71929,-76.58717 132.2807,-323.17434 0.26316,-398.70888z"
    //     },
    //     {
    //       value:
    //         "m158.1579,0.7648l-157.63158,-0.23848l0,398.94736l156.90516,0c0.24214,-132.90296 0.48428,-265.80592 0.72642,-398.70888z"
    //     },
    //     {
    //       value:
    //         "m158.1579,0.7648l-157.63158,-0.23848l0,398.94736l156.90516,0c-90.81049,-132.37664 -97.93677,-266.85855 0.72642,-398.70888z"
    //     },
    //     {
    //       value:
    //         "m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c0.08772,-132.90296 0.17544,-265.80592 0.26316,-398.70888z"
    //     }
    //   ],
    //   duration: 5000,
    //   loop: true
    // });
  },
  methods: {
    //鼠标点击
    m_d_path(e) {
      console.log("鼠标点击");
      this.click_on = true;
      this.down_m_x = e.clientX;
    },
    //鼠标点击后 + 移动(拖拽时)
    m_m_path(e) {
      //拉伸的距离长度
      // e.clientX 鼠标当前最新的坐标位置
      // this.down_m_x 鼠标最初的点击坐标位置
      //当左侧拉伸框是打开状态下,不再执行以下操作
      let left = this.box_el.offsetLeft;
      // this.down_m_x > left 防止用户直接从左侧拉伸进入容器时,左侧框直接被拉开
      if (!this.path_open && this.down_m_x > left) {
        this.stretch = e.clientX - this.down_m_x; //拉伸长度
        if (this.stretch > 0 && this.click_on) {
          console.log(this.stretch);
          this.path_el.setAttribute(
            "d",
            `m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c${this.stretch},-132.90296 ${this.stretch},-265.80592 0.26316,-398.70888z`
          );
        }
      } else {
        // alert("我已经被拉开了");
      }
    },
    //鼠标松开
    m_u_path(e) {
      console.log("鼠标松开");
      let left = this.box_el.offsetLeft;
      //当左侧拉伸框是打开状态下,不再执行以下操作
      // this.down_m_x > left 防止用户直接从左侧拉伸进入容器时,左侧框直接被拉开
      //this.stretch > 0 防止关闭左侧拉伸框时,用户重复点击问题
      if (!this.path_open && this.down_m_x > left && this.stretch > 0) {
        //如果拖拉距离超过50,则展开
        if (this.stretch > 50) {
          let _this = this;
          anime({
            targets: "#svg_1",
            duration: 300,
            d:
              "m158.1579,0.7648l-157.63158,-0.23848l0,398.94736l156.90516,0c0.24214,-132.90296 0.48428,-265.80592 0.72642,-398.70888z",
            complete: function(anim) {
              //动画完成后,会触发一次complete()回调。
              _this.path_open = true;
              anime({
                targets: ".chat_box",
                translateX: [-160, 0],
                opacity: 1,
                duration: 0
              });
            }
          });
        } else {
          //不超过50 则恢复
          anime({
            targets: "#svg_1",
            duration: 200,
            d:
              "m57.63158,0.7648l-57.10526,-0.23848l0,398.94736l56.8421,0c0.08772,-132.90296 0.17544,-265.80592 0.26316,-398.70888z"
          });
        }
      } else {
        // alert("我已经被拉开了");
      }
      this.click_on = false;
    },
    //关闭左侧拉伸框
    close_path(e) {
      console.log(e.target);
      // 主要运用了事件的冒泡
      //判断点击除 左侧拉伸框 外其他部分,全部为关闭 左侧拉伸框
      if (
        e.target == this.box_el ||
        e.target == document.querySelector(".overall")
      ) {
        //关闭后重置 左侧拉伸框状态 拉伸长度
        this.path_open = false;
        this.stretch = 0;
      } else {
        return;
      }
    }
  }
};
</script>

<style lang="scss"  scoped>
.overall {
  background: #65698f;
}
svg {
  width: 100%;
  height: 100%;
  transform: scale(1.05);
}
path {
  cursor: grab;
  fill: rgba(255, 255, 255, 0.966);
  stroke-width: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.box {
  width: 300px;
  height: 400px;
  background: #6d7ada;
  overflow: hidden;
  position: relative;
  .chat_box {
    width: 160px;
    height: 100%;
    // background: red;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    overflow-y: scroll;
    opacity: 0;
    transform: translateX(-160px);
    &::-webkit-scrollbar {
      opacity: 0;
      background: rgba(204, 204, 204, 0.685) !important;
      width: 2px; //y轴滚轮的宽
      // height: 2px; //x轴滚轮的高
    }
    &::-webkit-scrollbar-thumb {
      /*滚动条里面小方块*/
      border-radius: 10px;
      -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
      background: white;
    }
    &::-webkit-scrollbar-track {
      /*滚动条里面轨道*/
      // -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
      // border-radius: 10px;
      background: transparent;
      //  -webkit-scrollBar-track-color:black;
    }

    .chat_msg {
      margin: 0 5px;
      height: 60px;
      border-bottom: 1px solid #f0f0f0;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 12px;
      color: #5a5a5a;
      font-weight: bold;
      position: relative;
      .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgb(25, 238, 185);
        position: absolute;
        right: 5%;
      }
    }
  }
}
</style>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,236评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,867评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,715评论 0 340
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,899评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,895评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,733评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,085评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,722评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,025评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,696评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,816评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,447评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,057评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,009评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,254评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,204评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,561评论 2 343

推荐阅读更多精彩内容

  • UI组件 element- 饿了么出品的Vue2的web UI工具套件 Vux- 基于Vue和WeUI的组件库 m...
    流觞小菜鸟阅读 1,745评论 2 8
  • 把除了微信所有的社交软件都卸载了,还好有简书,日常记录吧。反正也没人知道,我这个号,可以肆无忌惮的发表自己的感受。...
    Golden_humble阅读 461评论 0 0
  • 今天看《增长黑客》第六章 激活:让潜在用户真正使用你的产品。 10/21【12/88】 《增长黑客》第六章 激活:...
    无00阅读 150评论 0 0
  • 取这么标题,不是为了吹牛。而是为了跟那些幕名而来,失望而归的同学说的:第一次逛西湖,不要报太高的期望。 西湖,人间...
    随风流浪1阅读 379评论 2 6
  • 大家好!我叫陈文燕,今年40岁,来自江苏常州,现在经营一家小店。我一家三口,先生,我,女儿。 我出生在江苏常州,也...
    c艳明阅读 130评论 0 0