npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@kkokk/captcha

v1.2.3

Published

captcha slider

Downloads

14

Readme

vue-captcha

配合仓库

gitee poster

github poster

一起使用的滑块验证 vue 版本

示例

使用文档

滑块验证

# 安装
npm install @kkokk/captcha
yarn add @kkokk/captcha
# 卸载
npm uninstall @kkokk/captcha
yarn remove @kkokk/captcha

Attributes

| 属性名 | 类型 | 默认值 | 说明 | |----------|---------|-----------------------------------------------------------|----------| | visible | Boolean | false | 开关 | | options | Object | { sliderImg: '背景图', sliderKey: '验证key', sliderY: '滑块高度' } | 滑块验证参数 | | options | Object | { rotateImg: '背景图', rotateKey: '验证key'} | 旋转验证参数 | | loading | Boolean | false | 加载状态 | | title | String | 滑块安全验证 | 标题 | | tips | String | 拖动下方滑块完成拼图 | 提示 | | successText | String | 验证成功 | 成功提示 | | errorText | String | 是不是太难了,咱换一个 | 错误提示 | | question | String | 拖动滑块完成拼图,欢迎提建议! | 问题提示 |

Events

| 事件名称 | 说明 | 回调参数 | |----------|-------------|--------------------------------------------------------------| | check | 检查是否正确的回调函数 | key, value, done, error (验证需要的key, 校验值, 完成回调, 错误回调) | | close | 弹窗关闭回调函数 | - | | refresh | 刷新回调函数 | - | | error | 错误回调函数 | - |

使用

// main.js 引入

import Captcha from '@kkokk/captcha'
Vue.use(Captcha)
<template>
  <div id="app">
    <!-- 滑块拼图验证 -->
    <button @click="open">滑块拼图验证</button>
    <slider-captcha 
      v-model="visible"
      :options="options"
      :loading="loading"
      @check="check"
      @close="close"
      @refresh="getSliderOptions"
      @error="getSliderOptions"
    >
      <!-- vue2 -->
      <span slot="title">自定义标题-安全验证</span>
      <span slot="successText">自定义成功提示-登录中</span>
      <span slot="errorText">自定义错误提示-是不是太难了换一个</span>
      <span slot="tips">自定义提示拖动下方滑块完成拼图</span>
      <!-- <span slot="question">自定义提示</span> -->
      <!-- vue2 -->
        
      <!-- vue3 -->
      <template #title>自定义标题-安全验证</template>
      <template #successText>自定义成功提示-登录中</template>
      <template #errorText>自定义错误提示-是不是太难了换一个</template>
      <template #tips>自定义提示拖动下方滑块完成拼图</template>
      <!-- <template #question>自定义提示</template> -->
      <!-- vue3 -->
    </slider-captcha>
    
    <!-- 旋转图片验证 -->
    <button @click="rotateOpen">旋转图片验证</button>
    <rotate-captcha
      v-model="visible"
      :options="options"
      :loading="loading"
      @check="check"
      @close="close"
      @refresh="getRotateOptions"
      @error="getRotateOptions"
    >
      <!-- vue2 -->
      <span slot="title">自定义标题-安全验证</span>
      <span slot="successText">自定义成功提示-登录中</span>
      <span slot="errorText">自定义错误提示-是不是太难了换一个</span>
      <span slot="tips">自定义提示拖动下方滑块使角度为正</span>
      <!-- <span slot="question">自定义提示</span> -->
      <!-- vue2 -->
        
      <!-- vue3 -->
      <template #title>自定义标题-安全验证</template>
      <template #successText>自定义成功提示-登录中</template>
      <template #errorText>自定义错误提示-是不是太难了换一个</template>
      <template #tips>自定义提示拖动下方滑块使角度为正</template>
      <!-- <template #question>自定义提示</template> -->
      <!-- vue3 -->
    </rotate-captcha>
  </div>
</template>

<script>
export default {
  name: 'App',
  data(){
    return {
      sliderVisible: false,
      visible: false,
      sliderLoading: false,
      loading: false,
      sliderOptions: {},
      options: {},
    }
  },
  methods: {
    // 
    rotateOpen() {
      this.visible = true
      this.getRotateOptions()
    },
    // 打开触发
    open() {
      this.sliderVisible = true
      this.getSliderOptions()
    },
    // 验证
    check(key, value, done, error)
    {
      this.loading = true
      this.sliderLoading = true
      this.request({
        type: 'post',
        url: 'http://127.0.0.1:8111/',
        data: {
          key: key,
          value: value,
        },
        success: (res) => {
          this.loading = false
          this.sliderLoading = false
          if(res.pass) {
            done()
          } else {
            error()
          }
        }
      })
    },
    // 关闭触发
    close() {

    },
    // 获取滑块验证参数
    getSliderOptions()
    {
      this.sliderLoading = true
      this.request({
        type: 'get',
        url: 'http://127.0.0.1:8111/?type=slider',
        success: (res) => {
          this.sliderOptions = {
            sliderImg: res.img,
            sliderKey: res.key,
            sliderY: res.y
          }
          this.sliderLoading = false
        }
      })
    },
    getRotateOptions()
    {
      this.loading = true
      this.request({
        type: 'get',
        url: 'http://127.0.0.1:8111/',
        success: (res) => {
          this.options = {
            rotateImg: res.img,
            rotateKey: res.key,
          }
          this.loading = false
        }
      })
    },
    // 封装一个简单请求接口
    request(obj) {
      return new Promise(function (resolve, reject) {
        var xhr = new XMLHttpRequest();

        switch(obj.type) {
          case 'get':
            xhr.open('GET', obj.url, true);
            xhr.onload = function() {
              resolve(obj.success(JSON.parse(this.responseText)))
            };
            xhr.onError= function () {
                    reject(obj.error({
                        status: this.status,
                        statusText: xhr.statusText
                    }));
                };
            break;
          case 'post':
            xhr.open('POST', obj.url, true);
            xhr.setRequestHeader('Content-Type', 'application/json');
            xhr.onreadystatechange = function() {
              if (this.readyState === XMLHttpRequest.DONE && this.status === 200) {
                resolve(obj.success(JSON.parse(this.responseText)))
              }
            };
            break;
        }
        
        xhr.send(JSON.stringify(obj.data));
      });
    }
  }
}
</script>

<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>