js模拟支付宝密码输入框

(编辑:jimmy 日期: 2024/9/30 浏览:2)

本文实例为大家分享了js模拟支付宝密码输入框效果的具体代码,供大家参考,具体内容如下

效果图:

js模拟支付宝密码输入框

代码:

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>Title</title>
</head>
<style>
 input{
  width:60px;
  height:60px;
  font-size:40px;
  line-height: 60px;
 }
</style>
<body>
<input type="password"/>
<input type="password"/>
<input type="password"/>
<input type="password"/>
</body>
<script src="/UploadFiles/2021-04-02/jquery-1.11.3.js">

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。