代码拉取完成,页面将自动刷新
同步操作将从 Hooray/clicaptcha 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
(function($){
$.fn.extend({
'clicaptcha': function(options){
var opts = $.extend({}, defaluts, options); //使用jQuery.extend覆盖插件默认参数
var $this = this;
if(!$('#clicaptcha-container').length){
$('body').append('<div id="clicaptcha-container">'+
'<div class="clicaptcha-imgbox">'+
'<img class="clicaptcha-img" alt="验证码加载失败,请点击刷新按钮">'+
'</div>'+
'<div class="clicaptcha-title"></div>'+
'<div class="clicaptcha-refresh-box">'+
'<div class="clicaptcha-refresh-line clicaptcha-refresh-line-left"></div>'+
'<a href="javascript:;" class="clicaptcha-refresh-btn" title="刷新"></a>'+
'<div class="clicaptcha-refresh-line clicaptcha-refresh-line-right"></div>'+
'</div>'+
'</div>');
$('body').append('<div id="clicaptcha-mask"></div>');
$('#clicaptcha-mask').click(function(){
$('#clicaptcha-container').hide();
$(this).hide();
});
$('#clicaptcha-container .clicaptcha-refresh-btn').click(function(){
$this.clicaptcha(opts);
});
}
$('#clicaptcha-container, #clicaptcha-mask').show();
$('#clicaptcha-container .clicaptcha-imgbox .step').remove();
$('#clicaptcha-container .clicaptcha-imgbox .clicaptcha-img').attr('src', opts.src + '?' + new Date().getTime()).on('load', function(){
var thisObj = $(this);
var text = Cookies.get('clicaptcha_text').split(',');
var title = '请依次点击';
var t = [];
for(var i = 0; i < text.length; i++){
t.push('“<span>'+text[i]+'</span>”');
}
title += t.join('、');
$('#clicaptcha-container .clicaptcha-title').html(title);
var xyArr = [];
thisObj.off('mousedown').on('mousedown', function(e){
e.preventDefault();
thisObj.off('mouseup').on('mouseup', function(e){
$('#clicaptcha-container .clicaptcha-title span:eq('+xyArr.length+')').addClass('clicaptcha-clicked');
xyArr.push(e.offsetX + ',' + e.offsetY);
$('#clicaptcha-container .clicaptcha-imgbox').append('<span class="step" style="left:' + (e.offsetX - 13) + 'px;top:' + (e.offsetY - 13) + 'px">' + xyArr.length + '</span>')
if(xyArr.length == text.length){
var captchainfo = [xyArr.join('-'), thisObj.width(), thisObj.height()].join(';');
$.ajax({
type: 'POST',
url: opts.src,
data: {
do : 'check',
info : captchainfo
}
}).done(function(cb){
if(cb == 1){
$this.val(captchainfo).data('ischeck', true);
$('#clicaptcha-container .clicaptcha-title').html(opts.success_tip);
setTimeout(function(){
$('#clicaptcha-container, #clicaptcha-mask').hide();
opts.callback();
}, 1500);
}else{
$('#clicaptcha-container .clicaptcha-title').html(opts.error_tip);
setTimeout(function(){
$this.clicaptcha(opts);
}, 1500);
}
});
}
});
});
});
return this;
},
'clicaptchaCheck': function(){
var ischeck = false;
if(this.data('ischeck') == true){
ischeck = true;
}
return ischeck;
},
'clicaptchaReset': function(){
this.val('').removeData('ischeck');
return this;
}
});
//默认参数
var defaluts = {
src: 'clicaptcha/clicaptcha.php',
success_tip: '验证成功!',
error_tip: '未点中正确区域,请重试!',
callback: function(){}
};
})(window.jQuery);
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。