当前位置: 首页 > article >正文

input实现手机验证码输入

实现效果:
在这里插入图片描述
实现思路:

  1. 将code框定位到input框上
  2. 通过input的输入实现验证码的输入
  3. 将input输入的支赋值在code框上

在这里插入图片描述
在这里插入图片描述
小demo:

<template>
    <a-row :gutter="[12, 12]" class="m-12">
        <a-col :span="24">
            <div class="code-group">
                <div class="pc_in">
                    <div class="block">
                        <div class="g_hx">{{ codeValue?.toString().substring(0, 1) || '' }}</div>
                        <div class="g_hx">{{ codeValue?.toString().substring(1, 2) || '' }}</div>
                        <div class="g_hx">{{ codeValue?.toString().substring(2, 3) || '' }}</div>
                        <div class="g_hx">{{ codeValue?.toString().substring(3, 4) || '' }}</div>
                        <div class="g_hx">{{ codeValue?.toString().substring(4, 5) || '' }}</div>
                        <div class="g_hx">{{ codeValue?.toString().substring(5, 6) || '' }}</div>
                    </div>
                    <div class="font">
                        <input type="number" id="inputNumber" :focus="true" y-model="codeValue"
                               maxlength="6" v-model="codeValue" @input="codeChange"/>
                    </div>
                </div>
            </div>
        </a-col>
    </a-row>
</template>

<script lang="ts">


import {Options, Vue} from "vue-class-component";

@Options({
    components: {}
})
export default class Dashboard extends Vue {

    codeValue = "";

    codeChange(e) {
        console.log(e)
    }
}
</script>

<style scoped lang="less">
.code-group {
    position: relative;
    height: 88px;
    .block {
        display: flex;
        justify-content: space-between;
        .g_hx {
            width: calc((100% - 12px)/6);background: #FFFFFF;
            border: 1px solid rgba(232,165,77,0.12);
            border-radius: 8px;
            text-align: center;
            height: 88px;
            line-height: 88px;
            font-size: 36px;
            color: #c0c0c0;
            font-weight: bold;
        }
    }
    input {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 88px;
        border: none;
        outline: none;
        background: transparent;
        letter-spacing: 200px;
        padding: 0 123px;
        color: transparent;
    }
}
</style>

http://www.kler.cn/a/106656.html

相关文章:

  • 【Qt实现虚拟键盘】
  • 如何在 Ubuntu 上 部署 OceanBase
  • 相机光学(四十四)——ALL-PD和PDAF
  • 使用阿里云快速搭建 DataLight 平台
  • C++ 判断语句的深入解析
  • C#从入门到放弃
  • 代码随想录算法训练营第3天| 203.移除链表元素 、 707.设计链表 、 206.反转链表
  • sqoop连接MYSQL报错处理
  • 基于PyTorch的MNIST手写体分类实战
  • Mac版好用的Git客户端 Fork 免激活
  • c# 操作word中的表格 批量复制和批量插入
  • 修改svc的LoadBalancer的IP引发的惨案
  • Nacos的安装和实操
  • 2023NOIP A层联测19-多边形
  • 基于nodejs+vue人脸识别考勤管理系统的设计与实现
  • 正点原子嵌入式linux驱动开发——Linux LCD驱动
  • day06-Flex布局
  • 微信小程序input输入字母自动转大写不生效问题解决
  • 一文搞懂 MineCraft 服务器启动操作和常见问题 2023年10月
  • CentOS卸载LVM磁盘的方法
  • centos格式化硬盘/u盘的分区为NTFS格式
  • 【网安大模型专题10.19】论文6:Java漏洞自动修复+数据集 VJBench+大语言模型、APR技术+代码转换方法+LLM和DL-APR模型的挑战与机会
  • 接口测试及接口测试常用的工具
  • nodejs+vue旅游推荐系统-计算机毕业设计
  • Spring的BeanFactory与FactoryBean的区别
  • MySQL - 为什么InnoDB选择B+树索引?Change buffer?