用JS怎么实现滑块滑动解锁的效果,代码是什�
Admin 2022-06-08 群英技术资�
本文实例为大家分享了JavaScript实现滑块验证解锁的具体代码,供大家参考,具体内容如下
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> // 引入矢量图标� <link rel="stylesheet" href="https://at.alicdn.com/t/font_2248239_eso2z5bskxk.css"> <title>Document</title> <style> * { margin: 0; padding: 0; } .box { width: 300px; height: 40px; line-height: 40px; text-align: center; background-color: #e8e8e8; box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2); position: relative; margin-top: 100px; margin-left: 200px; } .box .bgColor { position: absolute; left: 0; top: 0; width: 40px; height: 40px; } .box .tips { position: absolute; width: 100%; height: 40px; line-height: 40px; font-size: 14px; color: #000; text-align: center; user-select: none; } .ball { width: 50px; height: 38px; border: 1px solid #ccc; background: #fff; text-align: center; cursor: move; position: absolute; top: 0; left: 0; } </style> </head> <body> <div class="box"> <div class="bgColor"></div> <div class="tips">滑动验证</div> <div class="ball"><i class="iconfont icon-double-arro-right"></i></div> </div> </body> <script> var box = document.getElementsByClassName("box")[0]; var ball = document.getElementsByClassName("ball")[0]; var bgColor = document.getElementsByClassName("bgColor")[0]; var tips = document.getElementsByClassName("tips")[0]; // 设置成功状� var isSuccess = false; //默认为false 不成� ball.onmousedown = function(e) { var e = e || window.event; // 获取鼠标相对于事件源左上角的位置 var posx = e.offsetX; // 每次鼠标按下� 清除动画样式 ball.style.transition = ""; bgColor.style.transition = ""; document.onmousemove = function(e) { var e = e || window.event; var x = e.pageX - box.offsetLeft - posx; var max = box.clientWidth - ball.clientWidth; if (x <= 0) { x = 0; } if (x >= max) { x = max; } bgColor.style.width = x + "px"; ball.style.left = x + "px"; bgColor.style.backgroundColor = "#6ff"; if (x == max) { success(); } } document.onmouseup = function() { // 如果没有解锁成功则返回原� if (!isSuccess) { bgColor.style.width = 0 + "px"; ball.style.left = 0 + "px"; ball.style.transition = "left 0.6s linear"; bgColor.style.transition = "width 0.6s linear"; } // 鼠标抬起�,移除鼠标移动事件和鼠标抬起事� document.onmouseup = null; document.onmousemove = null; } } // 定义一个滑块解锁成功的方法 function success() { isSuccess = true; // 获取图标 var icon = ball.firstElementChild; tips.textContent = "解锁成功"; bgColor.style.backgroundColor = "lightgreen"; icon.className = "iconfont icon-gou"; icon.style.color = "lightgreen"; //滑动成功时,移除鼠标按下事件 ball.onmousedown = null; } </script> </html>
效果图如�:
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:[email protected]进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容�
猜你喜欢
怎么组织 Angular 项目?下面本篇文章整理分�5 个管� Angular 项目的实用技巧,希望对大家有所帮助�
这篇文章介绍JavaScript创建修改CAD图形,创建修改CAD图形,一般是基于AutoCAD进行二次开发,ObjectARX是AutoDesk公司针对AutoCAD平台上的二次开发而推出的一个开发软件包,它提供了以C++为基础的面向对象的开发环境及应用程序接口,能真正快速的访问AutoCAD图形数据�
目录elementUI 如何处理文件批量上传问题解决elementUI批量上传下载注意事项在el-upload组件关键的钩�,其它省略点击上传,将多个文件和表单数据一起上传elementUI 如何处理文件批量上传问题elementUI的Upload上传组件,通过设置multiple为true,就可以实现多选文件;但是�
TypeScript引入了很多静态编译语言的特性,今天有一个类型需要着重讨论下,这就是enum,需要的朋友们下面随着小编来一起学习学习吧
这篇文章给大家分享的是有关layui怎么使用的内容,本文有使用layui实现三级联动的实例供大家参考,小编觉得挺实用的,对大家学习layui的使用有一定的帮助,感兴趣的朋友接下来一起跟随小编看看吧�
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所�
增值电信经营许可证 : B1.B2-20140078