支付密码,键盘自动弹起功能

功能介绍

  • 进入页面,键盘自动弹起,第一个数字框高亮显示
  • 当前输入框阴影显示
  • 删除上一位密码,六位够了之后自动提交
  • 点击隐藏显示输入框

说明

GitHub地址
https://github.com/menglin1997/psw-keycode.git
代码是用react写的 如果想用到Vue项目中可以引用里面的方法,然后放到Vue项目中

图片展示

支付界面.jpg

样子不好看,但是功能都有 后期有时间会修改好看样式

代码

css代码

.password {
  position: relative;
  width: 100%;
  height: 50px;
  margin-top: 50%;
  text-align: center;
  /* background: pink; */
}
.ipts,
.divBox {
  display: flex;
  width: 100%;
  height: 50px;
  justify-content: space-around;
}
.divBox {
  position: absolute;
  top: 50%;
  /* background:pink; */
  transform: translateY(-50%)
}
.divBox div {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #ccc;
  
}
.divBox .boxShadow {
  box-shadow: 0 0 10px #999;
}
.line {
  width: 2upx;
  height: 40upx;
  background: #979797;
  animation: shan 1s ease infinite;
}
/* 键盘样式 */
.keyBoard {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: skyblue;
}
.keyBoard .close {
  background: rgba(0,0,0,.5);
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.keyBoard .nums {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.keyBoard .nums div {
  width: 33%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  margin-top: 2px;
  background: #fff;
}

jsx代码

import React, { Component } from 'react';
import '../assets/css/password.css'
class Password extends Component {
  constructor(props) {
    super(props);
    this.state = {
      len: [],
      divs: [0,1,2,3,4,5],
      boardlists: [{
        id: 1,
        con: 1,
        checked: false
        }, {
          id: 2,
          con: 2,
          checked: false
        }, {
          id: 3,
          con: 3,
          checked: false
        }, {
          id: 4,
          con: 4,
          checked: false
        }, {
          id: 5,
          con: 5,
          checked: false
        }, {
          id: 6,
          con: 6,
          checked: false
        }, {
          id: 7,
          con: 7,
          checked: false
        }, {
          id: 8,
          con: 8,
          checked: false
        }, {
          id: 9,
          con: 9,
          checked: false
        }, {
          id: 10,
          con: "提交",
          checked: false
        }, {
          id: 0,
          con: 0,
          checked: false
        },
        {
          id: 12,
          con: "x",
          checked: false
        }
      ]
    };
  }
  handleKey= (id) => {
    var value = this.state.len
    // 判断点击的数字 然后讲数字赋值给div
    if(value.length < 6 && id !== 10) {
      // 删除
      if(id === 12) {
        value.pop()
        this.setState({
          len: value
        })
      } else {
        value.push(id)
        this.setState({
          len: value
        })
      }
    } else if(id === 10 && value.length < 6) {
        console.log(value.length, 81)
        alert('点击了提交,但是密码不完整')
        return
    } else if(id === 10 && value.length === 6) {
      alert('点击了提交,密码完整')
    } else {
      alert('密码输入完毕')
    }
  }
  // 关闭(点击关闭让键盘隐藏)
  close =() => {
    let keyBoard = this.refs.keyBoard
    keyBoard.style.display = 'none'
  }
  // 点击显示键盘
  divBox=()=>{
    let keyBoard = this.refs.keyBoard
    keyBoard.style.display = 'block'
  }
  render() {
    return (
      
{/* 密码框布局 */}
{ this.state.len[0] }
{ this.state.len[1] }
{ this.state.len[2] }
{ this.state.len[3] }
{ this.state.len[4] }
{ this.state.len[5] }
{/* 数字键盘布局 */}
XX软件安全键盘
关闭
{ this.state.boardlists.map((item, index) => { return (
{item.con}
) }) }
); } } export default Password;

你可能感兴趣的:(支付密码,键盘自动弹起功能)