美文网首页
仿美团验证码

仿美团验证码

作者: 甘草子XS | 来源:发表于2018-07-12 09:49 被阅读0次
<!DOCTYPE html>
<html lang="zh-cn">

    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no,viewport-fit=cover">
        <title>cursor-vcode</title>
        <style>
            .box {padding-left: 20px;padding-right: 20px;padding-top: 60px;max-width: 320px;margin-left: auto;margin-right: auto;}
            .content {margin-top: 20px;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;
                    -webkit-box-align: center;-ms-flex-align: center;align-items: center;position: relative;width: 280px;margin-left: auto;margin-right: auto;}
            .content input {position: absolute;top: -100%;left: -666666px;opacity: 0;}
            .content .line {position: relative;width: 40px;height: 32px;line-height: 32px;text-align: center;font-size: 28px;}
            .content .line::after {display: block;position: absolute;content: '';left: 0;width: 100%;bottom: 0;height: 1px;background-color: #aaaaaa;}
            .content .line.animated::before {display: block;position: absolute;left: 50%;top: 20%;width: 1px;height: 60%;content: '';background-color: #333333;}
        </style>
    </head>
    <body>
        <div id="app" class="box">
            <h2 >验证码:</h2>
            <div class="content">
                <input ref="vcode" id="vcode" type="tel" maxlength="6" v-model="code" @focus="focused = true" @blur="focused = false" placeholder="ahsdfhadfah">
                <label for="vcode" class="line" v-for="item,index in codeLength" :class="{'animated': focused && cursorIndex === index}" v-text="codeArr[index]"> </label>
            </div>
        </div>
        <script src="https://cdn.bootcss.com/vue/2.5.16/vue.min.js"></script>
        <script>
            var app = new Vue({
                el: '#app',
                data: {
                    code: '',
                    codeLength: 6,
                    focused: false
                },
                computed: {
                    codeArr() {
                        return this.code.split('');
                    },
                    cursorIndex() {
                        return this.code.length;
                    }
                },
                watch: {
                    code(newVal) {
                        this.code = newVal.replace(/[^\d]/g, '');
                        if(newVal.length > 5) {
                            this.$refs.vcode.blur();
                        }
                    }
                },
            })
        </script>
    </body>

</html>

这个大概是三四个月前的了,在别人代码上稍作修改的 ,但由于时间已久,找不到原文章了,在此就不附链接了。

相关文章

  • 仿美团验证码

    这个大概是三四个月前的了,在别人代码上稍作修改的 ,但由于时间已久,找不到原文章了,在此就不附链接了。

  • ReactNative 仿美团项目

    ReactNative 仿美团项目 ReactNative 仿美团项目

  • 仿美团项目笔记

    仿美团项目笔记 在学习仿美团项目时,对于vue结构、组件拆分布局,路由结构划分、提取公共的url接口上又有了新的收...

  • 仿美团1

    1. onPress={(i) => {this._selectedItem(i) 注意: 这种写法是错误的,前面...

  • 高仿美团swift5.0<1>

    很早之前就想和大家一起分享一篇有关swift的文章,由于之前写过高仿美团的OC版本,然后就和大家分享高仿美团的sw...

  • 仿美团悬浮效果

    PullToRefreshListView实现到顶部悬浮效果,这里主要是在ListView的addHeaderVi...

  • ReactNative 仿美团项目

    今天公司iOS项目完成了,在闲暇时候回顾一下上半年写过的ReactNative 仿美团项目,感觉好久好久没有再动过...

  • 仿美团下拉刷新

    先上一张美团的下拉刷新 添加依赖 implementation 'com.github.runitwolf:ref...

  • flutter 仿美团APP

    Flutter 仿美图APP - github传送门 项目简介酒店管理系统练手项目APP前端,用flutter模拟...

  • 【美团网项目】1.项目介绍

    高仿美团网全栈实战 技术栈:Vue全家桶 + SSR + Koa2 全栈开发美团网 vue.js 全家桶系列,包含...

网友评论

      本文标题:仿美团验证码

      本文链接:https://www.haomeiwen.com/subject/qdosuftx.html