基于vue的验证码组件的示例代码
网络编程 2021-07-04 15:50www.168986.cn编程入门
这篇文章主要介绍了基于vue的验证码组件的示例代码,长沙网络推广觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随长沙网络推广过来看看吧
最近在自己写页面,模仿思否论坛,然后写登录注册UI的时候需要一个验证码组件. 去搜一下没找到什么合适的,而且大多都是基于后端的,于是自己手写一个。
演示
分析验证码组件
分析验证码功能
- 随机出现的数字大小写字母 (基础功能)
- 不同的数字或者字母有不同的颜色 (功能优化)
- 不同的数字或者字母有不同的字体大写 (功能优化)
- 不同的数字或者字母有不同的边距 (功能优化)
- 不同的数字或者字母有不同的倾斜角度 (功能优化)
- 更多功能优化...
分析组件功能
- 可以设置生成验证码的长度 (基本功能)
- 可以设置验证码组件的宽高 (基本功能)
编写验证码组件
template
最外层div绑定点击事件,点击后刷新验证码。
span是单个验证码的载体,样式动态绑定
<template> <div class="ValidCode disabled-select" :style="`width:${width}; height:${height}`" @click="refreshCode"> <span v-for="(item, index) in codeList" :key="index" :style="getStyle(item)">{{item.code}}</span> </div> </template>
methods
refreshCode 刷新验证码的方法
createdCode 生成验证码的方法
getStyle 为每个元素生成动态的样式
methods: { refreshCode () { this.createdCode() }, createdCode () { let len = this.length, codeList = [], chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz0123456789', charsLen = chars.length // 生成 for (let i = 0; i < len; i++) { let rgb = [Math.round(Math.random() 220), Math.round(Math.random() 240), Math.round(Math.random() 200)] codeList.push({ code: chars.charAt(Math.floor(Math.random() charsLen)), // 随机码 color: `rgb(${rgb})`, // 随机颜色 fontSize: `1${[Math.floor(Math.random() 10)]}px`, // 随机字号 padding: `${[Math.floor(Math.random() 10)]}px`, // 随机内边距 transform: `rotate(${Math.floor(Math.random() 90) - Math.floor(Math.random() 90)}deg)` // 随机旋转角度 }) } // 指向 this.codeList = codeList // 将当前数据派发出去 this.$emit('update:value', codeList.map(item => item.code).join('')) }, // 动态绑定样式 getStyle (data) { return `color: ${data.color}; font-size: ${data.fontSize}; padding: ${data.padding}; transform: ${data.transform}` } }
完整代码
使用
<valid-code :value.sync="validCode"></valid-code>
组件
<template> <div class="ValidCode disabled-select" :style="`width:${width}; height:${height}`" @click="refreshCode"> <span v-for="(item, index) in codeList" :key="index" :style="getStyle(item)">{{item.code}}</span> </div> </template> <script> export default { name: 'validCode', props: { width: { type: String, default: '100px' }, height: { type: String, default: '40px' }, length: { type: Number, default: 4 } }, data () { return { codeList: [] } }, mounted () { this.createdCode() }, methods: { refreshCode () { this.createdCode() }, createdCode () { let len = this.length, codeList = [], chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz0123456789', charsLen = chars.length // 生成 for (let i = 0; i < len; i++) { let rgb = [Math.round(Math.random() 220), Math.round(Math.random() 240), Math.round(Math.random() 200)] codeList.push({ code: chars.charAt(Math.floor(Math.random() charsLen)), color: `rgb(${rgb})`, fontSize: `1${[Math.floor(Math.random() 10)]}px`, padding: `${[Math.floor(Math.random() 10)]}px`, transform: `rotate(${Math.floor(Math.random() 90) - Math.floor(Math.random() 90)}deg)` }) } // 指向 this.codeList = codeList // 将当前数据派发出去 this.$emit('update:value', codeList.map(item => item.code).join('')) }, getStyle (data) { return `color: ${data.color}; font-size: ${data.fontSize}; padding: ${data.padding}; transform: ${data.transform}` } } } </script> <style scoped lang="scss"> .ValidCode{ display: flex; justify-content: center; align-items: center; cursor: pointer; span{ display: inline-block; } } </style>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程