文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

vue怎么实现滑动解锁功能

2023-06-29 09:05

关注

本文小编为大家详细介绍“vue怎么实现滑动解锁功能”,内容详细,步骤清晰,细节处理妥当,希望这篇“vue怎么实现滑动解锁功能”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

效果如下

vue怎么实现滑动解锁功能

vue怎么实现滑动解锁功能

vue怎么实现滑动解锁功能

话不多说,直接上代码;

<template>  <div>    <div id="box">      <div class="bgColor"></div>      <div class="txt">滑动解锁</div>      <!--给i标签添加上相应字体图标的类名即可-->      <div class="slider">        <i v-show="!isSuccess" class="el-icon-d-arrow-right"></i>        <i v-show="isSuccess" class="el-icon-check"></i>      </div>    </div>  </div></template><script>export default {  mounted() {    var self = this;    //一、定义了一个获取元素的方法    function getEle(selector) {      return document.querySelector(selector);    }    //二、获取到需要用到的DOM元素    var box = getEle("#box"), //容器      bgColor = getEle(".bgColor"), //背景色      txt = getEle(".txt"), //文本      slider = getEle(".slider"), //滑块      icon = getEle(".slider>i"),      successMoveDistance = box.offsetWidth - slider.offsetWidth, //解锁需要滑动的距离      downX; //用于存放鼠标按下时的位置    //三、给滑块添加鼠标按下事件    slider.onmousedown = mousedownHandler;    slider.ontouchstart = mousedownHandler; //移动端加touchstart事件    //3.1鼠标按下事件的方法实现    function mousedownHandler(e) {      bgColor.style.transition = "";      slider.style.transition = "";      var e = e || window.event || e.which;      downX = e.clientX ? e.clientX : e.changedTouches[0].clientX;      if (!self.isSuccess) {        //在鼠标按下时,分别给鼠标添加移动和松开事件        document.onmousemove = mousemoveHandler;        document.onmouseup = mouseupHandler;        //添加移动端对应事件        document.ontouchmove = mousemoveHandler;        document.ontouchend = mouseupHandler;      }    }    //四、定义一个获取鼠标当前需要移动多少距离的方法    function getOffsetX(offset, min, max) {      if (offset < min) {        offset = min;      } else if (offset > max) {        offset = max;      }      return offset;    }    //3.1.1鼠标移动事件的方法实现    function mousemoveHandler(e) {      var e = e || window.event || e.which;      var moveX = e.clientX ? e.clientX : e.changedTouches[0].clientX;      console.log(moveX);      var offsetX = getOffsetX(moveX - downX, 0, successMoveDistance);      bgColor.style.width = offsetX + "px";      slider.style.left = offsetX + "px";      if (offsetX == successMoveDistance) {        success();      }      //如果不设置滑块滑动时会出现问题(目前还不知道为什么)      e.preventDefault();    }    //3.1.2鼠标松开事件的方法实现    function mouseupHandler(e) {      if (!self.isSuccess) {        bgColor.style.width = 0 + "px";        slider.style.left = 0 + "px";        bgColor.style.transition = "width 0.5s linear";        slider.style.transition = "left 0.5s linear";      }      document.onmousemove = null;      document.onmouseup = null;      //移除移动端事件      document.ontouchmove = null;      document.ontouchend = null;    }    //五、定义一个滑块解锁成功的方法    function success() {      self.isSuccess = true;      txt.innerHTML = "解锁成功";      bgColor.style.backgroundColor = "lightgreen";      //滑动成功时,移除鼠标按下事件和鼠标移动事件      slider.onmousedown = null;      document.onmousemove = null;      //移除移动端事件      document.ontouchstart = null;      document.ontouchmove = null;    }  },  data() {    return {      isSuccess: false,    };  },};</script><style>* { touch-action: pan-y; } </style><style>#box {  position: relative;  width: 300px;  height: 40px;  margin: 0 auto;  margin-top: 10px;  background-color: #e8e8e8;  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);}.bgColor {  position: absolute;  left: 0;  top: 0;  width: 40px;  height: 40px;  background-color: lightblue;}.txt {  position: absolute;  width: 100%;  height: 40px;  line-height: 40px;  font-size: 14px;  color: #000;  text-align: center;}.slider {  position: absolute;  left: 0;  top: 0;  width: 50px;  height: 40px;    background: #fff;  text-align: center;  cursor: move;}.slider > i {  position: absolute;  top: 50%;  left: 50%;  transform: translate(-50%, -50%);}</style>

读到这里,这篇“vue怎么实现滑动解锁功能”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯