vue 實現滑塊驗證碼

圖一爲拖拽前效果,圖二爲拖拽後效果css

1、新建文件JcRange.vue,代碼以下:vue

  一、模板代碼:sass

1 <template>
2   <div class="jc-component__range">
3     <div class="jc-range" :class="rangeStatus?'success':''" >
4         <i @mousedown="rangeMove" :class="rangeStatus?successIcon:startIcon"></i>
5         {{rangeStatus?successText:startText}}
6     </div>
7   </div>
8 </template>

  二、js代碼函數

<script>
export default {
    props: {
        // 成功以後的函數
        successFun: {
            type: Function
        },
        //成功圖標
        successIcon: {
            type: String,
            default: 'el-icon-success'
        },
        //成功文字
        successText: {
            type: String,
            default: '驗證成功'
        },
        //開始的圖標
        startIcon: {
            type: String,
            default: 'el-icon-d-arrow-right'
        },
        //開始的文字
        startText: {
            type: String,
            default: '請拖住滑塊,拖動到最右邊'
        },
        //失敗以後的函數
        errorFun: {
            type: Function
        },
        //或者用值來進行監聽
        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)';
                    //執行成功的函數
                    this.errorFun && this.errorFun();
                }else{
                    this.rangeStatus = true;
                    if(this.status){
                        this.$parent[this.status] = true;
                    }
                    //執行成功的函數
                    this.successFun && this.successFun();
                }
                document.onmousemove = null;
                document.onmouseup = null;
            }
        }
    }
};
</script>

  三、css 代碼(此處使用了sass)flex

<style lang="scss" scoped>
@mixin jc-flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.jc-component__range{
    .jc-range{
        background-color: #e9e9e9;
        position: relative;
        transition: 1s all;
        user-select: none;
        color: #585858;
        @include jc-flex;
        height: 50px; /*no*/
        &.success{
            background-color: #3bc923;
            color: #fff;
            i{
                color: #3bc923;
            }
        }
        i{
            position: absolute;
            left: 0;
            width: 50px;/*no*/
            height: 100%;
            color: #3fcd26;
            background-color: #fff;
            border: 1px solid #d8d8d8;
            cursor: pointer;
            font-size: 24px;
            @include jc-flex;
        }
    }
}
</style>

2、引用方法(加上驗證就能夠了)this

<JcRange  status="ruleForm.status":successFun="onMpanelSuccess":errorFun="onMpanelError"></JcRange>
import JcRange from "@/components/common/JcRange.vue";
 status: [{ validator: checkStatus, trigger: "change" }]

var checkStatus = (rule, value, callback) => {
      console.log(value);
      if (!value) {
        return callback(new Error("請拖動滑塊完成驗證"));
      } else {
        callback();
      }
    };
相關文章
相關標籤/搜索