温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

如何使用php+js实现极验,拖动滑块验证码验证表单

发布时间:2022-03-01 10:32:50 来源:亿速云 阅读:307 作者:小新 栏目:web开发

这篇文章给大家分享的是有关如何使用php+js实现极验,拖动滑块验证码验证表单的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

  代码实现

  html文件

  <!DOCTYPEhtml>

  <htmllang="">

  <head>

  <metacharset="utf-8">

  <metahttp-equiv="x-ua-compatible"content="ie=edge">

  <metaname="viewport"content="width=device-width,initial-scale=1">

  <title>极验滑块拖动验证码-码农社区-web视频分享网</title>

  <scripttype="text/javascript"src="tn_code.js?v=35"></script>

  <linkrel="stylesheet"type="text/css"href="style.css?v=27"/>

  <styletype="text/css"></style>

  </head>

  <bodystyle="text-align:center;">

  <divclass="tncode"style="text-align:center;margin:100pxauto;"></div>

  <scripttype="text/javascript">

  $TN.onsuccess(function(){

  //验证通过

  });

  </script>

  php文件:check.php

  <?php

  require_oncedirname(__FILE__).'/TnCode.class.php';

  $tn=newTnCode();

  if($tn->check()){

  $_SESSION['tncode_check']='ok';

  echo"ok";

  }else{

  $_SESSION['tncode_check']='error';

  echo"error";

  }

  ?>

  主要核心文件:TnCode.class.php

  <?php

  classTnCode

  {

  var$im=null;

  var$im_fullbg=null;

  var$im_bg=null;

  var$im_slide=null;

  var$bg_width=240;

  var$bg_height=150;

  var$mark_width=50;

  var$mark_height=50;

  var$bg_num=6;

  var$_x=0;

  var$_y=0;

  //容错象素越大体验越好,越小破解难道越高

  var$_fault=3;

  function__construct(){

  //ini_set('display_errors','On');

  //

  error_reporting(0);

  if(!isset($_SESSION)){

  session_start();

  }

  }

  functionmake(){

  $this->_init();

  $this->_createSlide();

  $this->_createBg();

  $this->_merge();

  $this->_imgout();

  $this->_destroy();

  }

  functioncheck($offset=''){

  if(!$_SESSION['tncode_r']){

  returnfalse;

  }

  if(!$offset){

  $offset=$_REQUEST['tn_r'];

  }

  $ret=abs($_SESSION['tncode_r']-$offset)<=$this->_fault;

  if($ret){

  unset($_SESSION['tncode_r']);

  }else{

  $_SESSION['tncode_err']++;

  if($_SESSION['tncode_err']>10){//错误10次必须刷新

  unset($_SESSION['tncode_r']);

  }

  }

  return$ret;

  }

  privatefunction_init(){

  $bg=mt_rand(1,$this->bg_num);

  $file_bg=dirname(__FILE__).'/bg/'.$bg.'.png';

  $this->im_fullbg=imagecreatefrompng($file_bg);

  $this->im_bg=imagecreatetruecolor($this->bg_width,$this->bg_height);

  imagecopy($this->im_bg,$this->im_fullbg,0,0,0,0,$this->bg_width,$this->bg_height);

  $this->im_slide=imagecreatetruecolor($this->mark_width,$this->bg_height);

  $_SESSION['tncode_r']=$this->_x=mt_rand(50,$this->bg_width-$this->mark_width-1);

  $_SESSION['tncode_err']=0;

  $this->_y=mt_rand(0,$this->bg_height-$this->mark_height-1);

  }

  privatefunction_destroy(){

  imagedestroy($this->im);

  imagedestroy($this->im_fullbg);

  imagedestroy($this->im_bg);

  imagedestroy($this->im_slide);

  }

  privatefunction_imgout(){

  if(!$_GET['nowebp']&&function_exists('imagewebp')){//优先webp格式,超高压缩率

  $type='webp';

  $quality=40;//图片质量0-100

  }else{

  $type='png';

  $quality=7;//图片质量0-9

  }

  header('Content-Type:image/'.$type);

  $func="image".$type;

  $func($this->im,null,$quality);

  }

  privatefunction_merge(){

  $this->im=imagecreatetruecolor($this->bg_width,$this->bg_height*3);

  imagecopy($this->im,$this->im_bg,0,0,0,0,$this->bg_width,$this->bg_height);

  imagecopy($this->im,$this->im_slide,0,$this->bg_height,0,0,$this->mark_width,$this->bg_height);

  imagecopy($this->im,$this->im_fullbg,0,$this->bg_height*2,0,0,$this->bg_width,$this->bg_height);

  imagecolortransparent($this->im,0);//16777215

  }

  privatefunction_createBg(){

  $file_mark=dirname(__FILE__).'/img/mark.png';

  $im=imagecreatefrompng($file_mark);

  header('Content-Type:image/png');

  //imagealphablending($im,true);

  imagecolortransparent($im,0);//16777215

  //imagepng($im);exit;

  imagecopy($this->im_bg,$im,$this->_x,$this->_y,0,0,$this->mark_width,$this->mark_height);

  imagedestroy($im);

  }

  privatefunction_createSlide(){

  $file_mark=dirname(__FILE__).'/img/mark2.png';

  $img_mark=imagecreatefrompng($file_mark);

  imagecopy($this->im_slide,$this->im_fullbg,0,$this->_y,$this->_x,$this->_y,$this->mark_width,$this->mark_height);

  imagecopy($this->im_slide,$img_mark,0,$this->_y,0,0,$this->mark_width,$this->mark_height);

  imagecolortransparent($this->im_slide,0);//16777215

  //header('Content-Type:image/png');

  //imagepng($this->im_slide);exit;

  imagedestroy($img_mark);

  }

感谢各位的阅读!关于“如何使用php+js实现极验,拖动滑块验证码验证表单”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI