vue實現(xiàn)登錄時滑塊驗證
更新時間:2022年03月04日 15:49:52 作者:別搞花里胡哨的
這篇文章主要為大家詳細介紹了vue實現(xiàn)登錄時滑塊驗證,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了vue實現(xiàn)登錄時滑塊驗證的具體代碼,供大家參考,具體內(nèi)容如下
1.效果圖


2. 新建 SliderCheck.vue組件
<template>
<!-- ?拖動驗證-->
? <div class="slider-check-box">
? ? <div class="slider-check" :class="rangeStatus ? 'success' : ''">
? ? ? <i @mousedown="rangeMove" :class="rangeStatus ? successIcon : startIcon"></i>
? ? ? {{ rangeStatus ? successText : startText }}
? ? </div>
? </div>
</template>
<script>
export default {
? props: {
? ? // 成功之后的函數(shù)
? ? successFun: {
? ? ? type: Function
? ? },
? ? //成功圖標(biāo)
? ? successIcon: {
? ? ? type: String,
? ? ? default: 'el-icon-success'
? ? },
? ? //成功文字
? ? successText: {
? ? ? type: String,
? ? ? default: '驗證成功'
? ? },
? ? //開始的圖標(biāo)
? ? startIcon: {
? ? ? type: String,
? ? ? default: 'el-icon-d-arrow-right'
? ? },
? ? //開始的文字
? ? startText: {
? ? ? type: String,
? ? ? default: '請拖住滑塊,拖動到最右邊'
? ? },
? ? //失敗之后的函數(shù)
? ? errorFun: {
? ? ? type: Function
? ? },
? ? //或者用值來進行監(jiān)聽
? ? status: {
? ? ? type: String
? ? }
? },
? data() {
? ? return {
? ? ? disX: 0,
? ? ? rangeStatus: false
? ? }
? },
? methods: {
? ? //滑塊移動
? ? rangeMove(e) {
? ? ? let ele = e.target
? ? ? let startX = e.clientX
? ? ? let eleWidth = ele.offsetWidth
? ? ? let parentWidth = ele.parentElement.offsetWidth
? ? ? let MaxX = parentWidth - eleWidth
? ? ? if (this.rangeStatus) {
? ? ? ? //不運行
? ? ? ? return false
? ? ? }
? ? ? document.onmousemove = e => {
? ? ? ? let endX = e.clientX
? ? ? ? this.disX = endX - startX
? ? ? ? if (this.disX <= 0) {
? ? ? ? ? this.disX = 0
? ? ? ? }
? ? ? ? if (this.disX >= MaxX - eleWidth) {
? ? ? ? ? //減去滑塊的寬度,體驗效果更好
? ? ? ? ? this.disX = MaxX
? ? ? ? }
? ? ? ? ele.style.transition = '.1s all'
? ? ? ? ele.style.transform = 'translateX(' + this.disX + 'px)'
? ? ? ? e.preventDefault()
? ? ? }
? ? ? document.onmouseup = () => {
? ? ? ? if (this.disX !== MaxX) {
? ? ? ? ? ele.style.transition = '.5s all'
? ? ? ? ? ele.style.transform = 'translateX(0)'
? ? ? ? ? //執(zhí)行成功的函數(shù)
? ? ? ? ? this.errorFun && this.errorFun()
? ? ? ? } else {
? ? ? ? ? this.rangeStatus = true
? ? ? ? ? if (this.status) {
? ? ? ? ? ? this.$parent[this.status] = true
? ? ? ? ? }
? ? ? ? ? //執(zhí)行成功的函數(shù)
? ? ? ? ? this.successFun && this.successFun()
? ? ? ? }
? ? ? ? document.onmousemove = null
? ? ? ? document.onmouseup = null
? ? ? }
? ? }
? }
}
</script>
<style lang="scss" scoped>
$blue: #198eeb;
@mixin jc-flex {
? display: flex;
? justify-content: center;
? align-items: center;
}
.slider-check-box {
? .slider-check {
? ? background-color: #e9e9e9;
? ? position: relative;
? ? transition: 1s all;
? ? user-select: none;
? ? color: #585858;
? ? @include jc-flex;
? ? height: 40px;
? ? &.success {
? ? ? background-color: $blue;
? ? ? color: #fff;
? ? ? i {
? ? ? ? color: $blue;
? ? ? }
? ? }
? ? i {
? ? ? position: absolute;
? ? ? left: 0;
? ? ? width: 50px;
? ? ? height: 100%;
? ? ? color: $blue;
? ? ? background-color: #fff;
? ? ? border: 1px solid #d8d8d8;
? ? ? cursor: pointer;
? ? ? font-size: 24px;
? ? ? @include jc-flex;
? ? }
? }
}
</style>3.在父組件index.vue注冊使用
<template>
?? ?<div>
? ? ?? ?<SliderCheck :successFun="handleSuccessFun" :errorFun="handleErrorFun"></SliderCheck>
? ? </div>
</template>
<script>
import SliderCheck from '@/components/test/SliderCheck'
export default {
? name: "index",
? components:{
? ? SliderCheck,
? },
? data(){
? ? return {},
? methods:{
? ? // 滑塊驗證成功回調(diào)
? ? handleSuccessFun() {
? ? ? console.log('滑動成功')
? ? },
? ? // 滑塊驗證失敗回調(diào)
? ? handleErrorFun() {
? ? ? console.log('滑動失敗')
? ? }
? }
?
}
</script>
<style lang="scss" scoped>
</style>以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
vue history 模式打包部署在域名的二級目錄的配置指南
這篇文章主要介紹了vue history 模式打包部署在域名的二級目錄的配置指南 ,本文給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友可以參考下2019-07-07
基于vue開發(fā)微信小程序mpvue-docs跳轉(zhuǎn)頁面功能
這篇文章主要介紹了基于vue寫微信小程序mpvue-docs跳轉(zhuǎn)頁面,非常不錯,具有一定的參考借鑒價值,需要的朋友可以參考下2019-04-04
vue.js實現(xiàn)數(shù)據(jù)動態(tài)響應(yīng) Vue.set的簡單應(yīng)用
這篇文章主要介紹了vue.js實現(xiàn)數(shù)據(jù)動態(tài)響應(yīng),Vue.set的簡單應(yīng)用,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-06-06
Vue結(jié)合高德地圖實現(xiàn)HTML寫自定義信息彈窗全過程
最近開發(fā)中遇到一個多個點繪制,并實現(xiàn)點擊事件,出現(xiàn)自定義窗口顯示相關(guān)信息等功能,下面這篇文章主要給大家介紹了關(guān)于Vue結(jié)合高德地圖實現(xiàn)HTML寫自定義信息彈窗的相關(guān)資料,需要的朋友可以參考下2023-04-04
Vue時間軸 vue-light-timeline的用法說明
這篇文章主要介紹了Vue時間軸 vue-light-timeline的用法說明,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-10-10

