基于vue的验证码组件的示例代码
作者:我在长安长安 时间:2024-06-05 15:29:22
最近在自己写页面,模仿思否论坛,然后写登录注册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>
源码地址
来源:https://segmentfault.com/a/1190000017968369
标签:vue,验证码
0
投稿
猜你喜欢
Python使用Matplotlib绘制甘特图的实践
2021-04-06 03:16:56
Python中3种内建数据结构:列表、元组和字典
2022-12-20 03:46:04
SQLserver中字符串查找功能patindex和charindex的区别
2012-06-06 20:20:42
ROS1 rosbag的详细使用并且使用python合并bag包的方法
2021-04-30 11:43:54
Golang 错误捕获Panic与Recover的使用
2024-02-07 20:15:42
Python+OpenCV读写视频的方法详解
2023-02-22 08:57:09
为SQL Server数据库传数组参数的变通办法
2009-10-23 09:26:00
Shellcode加密解密函数
2009-04-24 11:18:00
使用递归删除树形结构的所有子节点(java和mysql实现)
2024-01-12 23:22:16
ASP利用XMLHTTP实现表单提交以及cookies的发送的代码
2011-04-15 10:37:00
20行Python代码实现视频字符化功能
2023-01-08 21:17:02
Python设计模式之状态模式原理与用法详解
2022-04-16 06:37:36
MySQL中查询字段为空或者为null的方法
2024-01-24 01:42:21
MySQL中的count(*) 和 count(1) 区别性能对比分析
2024-01-24 03:12:51
python删除服务器文件代码示例
2023-07-26 15:44:08
Go语言Zap库Logger的定制化和封装使用详解
2024-04-25 15:18:52
详解python环境安装selenium和手动下载安装selenium的方法
2023-10-05 18:07:07
windows python3安装Jupyter Notebooks教程
2023-04-13 12:56:16
举例简单讲解Python中的数据存储模块shelve的用法
2022-10-12 04:23:55
Django多数据库的实现过程详解
2024-01-21 17:47:21