基于JS实现类似支付宝支付密码输入框


Posted in Javascript onSeptember 02, 2016

本文实现的是一个类似支付宝支付密码的界面,只可以输入数字,且只可以输入6位

首先给大家展示下效果图,如果感觉不错,请参考实现代码。

基于JS实现类似支付宝支付密码输入框

1、样式表

.wrap{
margin: 10px auto;
width: 329px;
height: 640px; 
padding-top: 200px;
}
.inputBoxContainer{
width: 240px;
height: 50px;
margin: 0 auto;
position: relative;
}
.inputBoxContainer .bogusInput{
width: 100%;
height: 100%;
border: #c3c3c3 1px solid;
border-radius: 7px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
overflow: hidden;
position: absolute;
z-index: 0;
}
.inputBoxContainer .realInput{
width: 100%;
height: 100%;
position: absolute;
top:0;
left: 0;
z-index: 1;
filter:alpha(opacity=0);
-moz-opacity:0;
opacity:0;
}
.inputBoxContainer .bogusInput input{
padding: 0;
width: 16.3%;
height: 100%;
float:left;
background: #ffffff;
text-align: center;
font-size: 20px;
border: none;
border-right: #C3C3C3 1px solid;
}
.inputBoxContainer .bogusInput input:last-child{
border: none;
}
.confirmButton{
width: 240px;
height: 45px;
border-radius: 7px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
background: #f4f4f4;
border: #d5d5d5 1px solid;
display: block;
font-size: 16px;
margin: 30px auto;
margin-bottom: 20px;
}
.showValue{
width: 240px;
height: 22px;
line-height: 22px;
font-size: 16px;
text-align: center;
margin: 0 auto;
}

2、HTML代码

<div class="wrap">
<div class="inputBoxContainer" id="inputBoxContainer">
<input type="text" class="realInput"/>
<div class="bogusInput">
<input type="password" maxlength="6" disabled/>
<input type="password" maxlength="6" disabled/>
<input type="password" maxlength="6" disabled/>
<input type="password" maxlength="6" disabled/>
<input type="password" maxlength="6" disabled/>
<input type="password" maxlength="6" disabled/>
</div>
</div>
<button id="confirmButton" class="confirmButton">查看</button>
<p class="showValue" id="showValue"></p>
</div>

3、js代码控制逻辑效果

(function(){
var container = document.getElementById("inputBoxContainer");
boxInput = {
maxLength:"",
realInput:"",
bogusInput:"",
bogusInputArr:"",
callback:"",
init:function(fun){
var that = this;
this.callback = fun;
that.realInput = container.children[0];
that.bogusInput = container.children[1];
that.bogusInputArr = that.bogusInput.children;
that.maxLength = that.bogusInputArr[0].getAttribute("maxlength");
that.realInput.oninput = function(){
that.setValue();
}
that.realInput.onpropertychange = function(){
that.setValue();
}
},
setValue:function(){
this.realInput.value = this.realInput.value.replace(/\D/g,"");
console.log(this.realInput.value.replace(/\D/g,""))
var real_str = this.realInput.value;
for(var i = 0 ; i < this.maxLength ; i++){
this.bogusInputArr[i].value = real_str[i]?real_str[i]:"";
}
if(real_str.length >= this.maxLength){
this.realInput.value = real_str.substring(0,6);
this.callback();
}
},
getBoxInputValue:function(){
var realValue = "";
for(var i in this.bogusInputArr){
if(!this.bogusInputArr[i].value){
break;
}
realValue += this.bogusInputArr[i].value;
}
return realValue;
}
}
})()
boxInput.init(function(){
getValue();
});
document.getElementById("confirmButton").onclick = function(){
getValue();
}
function getValue(){
document.getElementById("showValue").innerText = boxInput.getBoxInputValue();
}

以上所述是小编给大家介绍的基于JS实现类似支付宝支付密码输入框,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!

Javascript 相关文章推荐
JQuery实现绚丽的横向下拉菜单
Dec 19 Javascript
javascript 获取HTML DOM父、子、临近节点
Jun 16 Javascript
jQuery中ajax的load()与post()方法实例详解
Jan 05 Javascript
详解微信小程序开发之城市选择器 城市切换
Jan 17 Javascript
jQuery pagination分页示例详解
Oct 23 jQuery
node.js爬取中关村的在线电瓶车信息
Nov 13 Javascript
JavaScript实现预览本地上传图片功能完整示例
Mar 08 Javascript
小程序云函数调用API接口的方法
May 17 Javascript
让 babel webpack vue 配置文件支持智能提示的方法
Jun 22 Javascript
使用Layui搭建后台管理界面的操作方法
Sep 20 Javascript
JavaScript canvas实现雪花随机动态飘落
Feb 08 Javascript
基于javascript的无缝滚动动画实现2
Aug 07 Javascript
JavaScript中Number对象的toFixed() 方法详解
Sep 02 #Javascript
Node.js实现兼容IE789的文件上传进度条
Sep 02 #Javascript
AngularJs  Understanding Angular Templates
Sep 02 #Javascript
jquery 中toggle的2种用法详解(推荐)
Sep 02 #Javascript
浅谈JS中的三种字符串连接方式及其性能比较
Sep 02 #Javascript
AngularJs  E2E Testing 详解
Sep 02 #Javascript
解决node.js安装包失败的几种方法
Sep 02 #Javascript
You might like
GD输出汉字的函数的分析
2006/10/09 PHP
一个自定义位数的php多用户计数器代码
2007/03/11 PHP
求PHP数组最大值,最小值的代码
2011/10/31 PHP
PHP 中检查或过滤IP地址的实现代码
2011/11/27 PHP
php获取目标函数执行时间示例
2014/03/04 PHP
Laravel解决nesting level错误和隐藏index.php的问题
2019/10/12 PHP
javascript 装载iframe子页面,自适应高度
2009/03/20 Javascript
extjs 为某个事件设置拦截器
2010/01/15 Javascript
用javascript替换URL中的参数值示例代码
2014/01/27 Javascript
javascript页面上使用动态时间具体实现
2014/03/18 Javascript
ajax请求乱码的解决方法(中文乱码)
2014/04/10 Javascript
ECMAScript 5中的属性描述符详解
2015/03/02 Javascript
JavaScript实现添加及删除事件的方法小结
2015/08/04 Javascript
jQuery实现带有上下控制按钮的简单多行滚屏效果代码
2015/09/04 Javascript
js+css实现超简洁的二级下拉菜单效果代码
2015/09/07 Javascript
jQuery绑定事件监听bind和移除事件监听unbind用法实例详解
2016/01/19 Javascript
Javascript的表单验证长度
2016/03/16 Javascript
浅析jQuery 遍历函数,javascript中的each遍历
2016/05/25 Javascript
简单三步实现报表页面集成天气
2016/12/15 Javascript
JavaScript实现经纬度转换成地址功能
2017/03/28 Javascript
小程序实现发表评论功能
2018/07/06 Javascript
element-ui 中的table的列隐藏问题解决
2018/08/24 Javascript
vue实现移动端悬浮窗效果
2018/12/01 Javascript
详解如何在vscode里面调试js和node.js的方法步骤
2018/12/24 Javascript
JavaScript中的回调函数实例讲解
2019/01/27 Javascript
JavaScript类型相关的常用操作总结
2019/02/14 Javascript
js+springMVC 提交数组数据到后台的实例
2019/09/21 Javascript
Vue两种组件类型:递归组件和动态组件的用法
2020/08/06 Javascript
python开发之基于thread线程搜索本地文件的方法
2015/11/11 Python
Python的shutil模块中文件的复制操作函数详解
2016/07/05 Python
Python中用字符串调用函数或方法示例代码
2017/08/04 Python
python爬虫获取小区经纬度以及结构化地址
2018/12/30 Python
Python字符串及文本模式方法详解
2020/09/10 Python
2015年酒店前台工作总结
2015/04/20 职场文书
java基础——多线程
2021/07/03 Java/Android
Python使用Beautiful Soup(BS4)库解析HTML和XML
2022/06/05 Python