first236108/slide-capcha

一个免费的幻灯片图片验证码库。

维护者

详细信息

gitee.com/alexpan/slideCapcha.git

安装: 160

依赖项: 0

建议者: 0

安全: 0

语言:CSS

v1.4 2020-07-14 06:58 UTC

This package is not auto-updated.

Last update: 2024-10-02 03:46:54 UTC


README

=============== Build Status PHP Version

描述

slide capcha,它是免费的,正如原始作者(weiyingbin)所说,许多验证码需要付费。所以,试试这个。这个库是tncode的升级,感谢weiyingbin,希望没有侵权。

安装方法

composer require first236108/slide-capcha

文档

有关详细信息,请参考示例。只需注意,首先,API返回的数据必须包括状态字段;其次,图片格式为png;最后,表单处理ID,如下所示

<form id="form1">
    <input type="text" name="">
    <!--……-->
    <button type="button" class="tncode"></button>
</form>

<script >
tncode.init({
        imageUrl: '/make.php',
        submit: '/login.php',
        form: 'form1',              //form handle
        method: 'post',
        success: 'ok',              //status
        onsuccess: function (res) {
            console.log(res);
            debugger;
            location.href = res.url;
        }
    });
</script>