Skip to content

VerifyRotate 旋转验证组件

VerifyRotate 组件用于创建一个旋转验证的交互组件,用户需要将滑块拖动到正确的角度来完成验证。

支持平台

安卓iosweb微信小程序支付宝小程序QQ小程序
xxx

示例

vue
<template>
	<t-page title='旋转滑块验证' class="p.30">
		<t-card class="mb.30" title='VerifyRotate 滑块验证码' sub-title="滑块验证码用于机器人验证,常用于接口访问防止机器频繁操作浪费资源!"></t-card>
		<t-section class="mb.30" title="基础使用+主题展示"></t-section>
		<t-verify-rotate size='l' class="mb.30" src='/static/image/avatar.jpeg'></t-verify-rotate>
		<t-verify-rotate size='l' class="mb.30" type='e' src='/static/image/avatar.jpeg'></t-verify-rotate>
		<t-verify-rotate size='l' class="mb.30" type='s' src='/static/image/avatar.jpeg' effect="l"></t-verify-rotate>
	</t-page>
</template>

<script>
	export default {
		data() {
			return {

			};
		}
	}
</script>

<style lang="scss">

</style>

Props

名称描述类型默认值可选值
src验证图片的来源String''-
type组件类型String'p'-
title标题String'安全验证'-
lable标签String'拖动滑块至图片正确的角度'-
successTitle验证成功标题String'验证成功'-
activeBarIcon激活状态下的滑块图标String'checkmark-circle-fill'-
inactiveBarIcon非激活状态下的滑块图标String'arrow-right-double'-
activeColor激活颜色String''-
inactiveColor非激活颜色String'#eeeeee'-
verifyRange验证范围Number10-

Events

事件名描述回调参数版本
success当验证成功时触发--
fail当验证失败时触发--

Slots

名称描述
--

示例

html
<t-verify-rotate src="path/to/image.jpg" @success="handleSuccess" @fail="handleFail"></t-verify-rotate>