验证码的生成

regist.prototype.generateCode = function(show_num){
	var canvas_width=$('.yzmImg').width();
	var canvas_height=$('.yzmImg').height();
	var canvas = document.getElementById("yzmImg");//获取到canvas的对象
	var context = canvas.getContext("2d");//获取到canvas画图的环境
	canvas.width = canvas_width + 30;
	canvas.height = canvas_height;
	var sCode = "a,b,c,d,e,f,g,h,i,j,k,m,n,p,q,r,s,t,u,v,w,x,y,z,A,B,C,E,F,G,H,J,K,L,M,N,P,Q,R,S,T,W,X,Y,Z,1,2,3,4,5,6,7,8,9,0";
	var aCode = sCode.split(",");
	var aLength = aCode.length;//获取到数组的长度
	for (var i = 0; i < 4; i++) { //这里的for循环可以控制验证码位数(如果想显示6位数,4改成6即可)
		var j = Math.floor(Math.random() * aLength);//获取到随机的索引值
		var deg = Math.random() - 0.5; //产生一个随机弧度
		var txt = aCode[j];//得到随机的一个内容
		show_num[i] = txt.toLowerCase();
		var x = 15 + i*30;//文字在canvas上的x坐标
		var y = 15 + Math.random() * 10;//文字在canvas上的y坐标
		context.font = "bold 22px 微软雅黑";
		context.translate(x, y);
		context.rotate(deg);
		context.fillStyle = supplierRegist.randomColor();
		context.fillText(txt, 0, 0);
		context.rotate(-deg);
		context.translate(-x, -y);
	}
	for (var i = 0; i <= 5; i++) { //验证码上显示线条
		context.strokeStyle = supplierRegist.randomColor();
		context.beginPath();
		context.moveTo(Math.random() * canvas_width * 2, Math.random() * canvas_height);
		context.lineTo(Math.random() * canvas_width * 2, Math.random() * canvas_height);
		context.stroke();
	}
	for (var i = 0; i <= 60; i++) { //验证码上显示小点
		context.strokeStyle = supplierRegist.randomColor();
		context.beginPath();
		var x = Math.random() * canvas_width * 2;
		var y = Math.random() * canvas_height;
		context.moveTo(x, y);
		context.lineTo(x + 1, y + 1);
		context.stroke();
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值