用JS怎么实现滑块滑动解锁的效果,代码是什么
Admin 2022-06-08 群英技术资讯 911 次浏览
这篇文章给大家分享的是用JS怎么实现滑块滑动解锁的效果,代码是什么。小编觉得挺实用的,因此分享给大家做个参考,文中的介绍得很详细,而要易于理解和学习,有需要的朋友可以参考,接下来就跟随小编一起了解看看吧。本文实例为大家分享了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>
效果图如下:

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
前段时间公司在做一个webIDE项目,其中有对文件树的各种操作,主要通过右键菜单实现,今天就来记录一下怎么在vue项目中实现全局的自定义右键菜单。效果如图所示:注意:需要在项目中找到页面整体布局的组件,比如项目使用Home.vue作为整个项目的公共布局,将根元素定位设置成relative,使右键菜单相对于其进行定位。本
React中useRef的用法有什么?如果有使用过React的朋友,应该对ref会比较熟悉的点,ref可以用来获取组件实例对象或者是DOM对象,而useRef这个hooks函数,除了传统的用法之外,它还可以“跨渲染周期”保存数据。那么具体怎样用呢?下面我们就一起来了解看看。
滑块组件就是一个允许用户在有限区间内通过移动滑块来选择值的组件。滑块组件的应用是比较常见的,例如商品价格区间筛选,音量设置,滑块验证等等。这篇文章就给大家介绍一下用原生JS实现滑块组件,下面是实现效果,功能分析以及代码。
本篇文章给大家带来了关于javascript的相关知识,其中详细介绍了javaScript三种引入方式行内式,嵌入样式、外部样式及其使用方式;下面一起来看一下,希望对大家有帮助。
这篇文章主要介绍了JS hasOwnProperty()方法检测一个属性是否是对象的自有属性的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
成为群英会员,开启智能安全云计算之旅
立即注册关注或联系群英网络
7x24小时售前:400-678-4567
7x24小时售后:0668-2555666
24小时QQ客服
群英微信公众号
CNNIC域名投诉举报处理平台
服务电话:010-58813000
服务邮箱:service@cnnic.cn
投诉与建议:0668-2555555
Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008