您好,登錄后才能下訂單哦!
這篇文章主要介紹JS怎么實現驗證碼,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
具體代碼:
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>驗證碼 - 億速云(yisu.com)</title> <style> .input-val { width: 150px; height: 30px; border: 1px solid #ddd; box-sizing: border-box;/*box-sizing 屬性允許你以某種方式定義某些元素,以適應指定區域。*/ } #canvas { vertical-align: middle;/*vertical-align屬性設置一個元素的垂直對齊。*/ box-sizing: border-box; border: 1px solid #ddd; cursor: pointer; } .btn { display: block; margin-top: 10px; height: 30px; width: 80px; font-size: 16px; color: #fff; background-color: #409EFE; border: 1px solid #EBEDEF; border-radius: 50px; } </style></head><script type="text/javascript" src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js" ></script><script> $(function(){ var show_num = []; draw(show_num); $("#canvas").on('click',function(){ draw(show_num); }) $(".btn").on('click',function(){ var val = $(".input-val").val().toLowerCase(); //toLowerCase()函數將字符串中的所有字符轉為小寫。所以輸入框不區分大小寫。 var num = show_num.join(""); if(val==''){ alert('請輸入驗證碼!'); }else if(val == num){ alert('提交成功!'); $(".input-val").val(''); }else{ alert('驗證碼錯誤!請重新輸入!'); $(".input-val").val(''); } }) }) function draw(show_num) {//生成并渲染出驗證碼圖形 var canvas_width=$('#canvas').width(); var canvas_height=$('#canvas').height(); var canvas = document.getElementById("canvas");//獲取canvas var context = canvas.getContext("2d");//獲取到canvas畫圖的環境 canvas.width = canvas_width; canvas.height = canvas_height; var sCode = "A,B,C,E,F,G,H,J,K,L,M,N,P,Q,R,S,T,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,m,n,p,q,r,s,t,u,v,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循環可以控制驗證碼位數 var j = Math.floor(Math.random() * aLength);//獲取到隨機的索引值 var deg = Math.random() - 0.5; //產生一個隨機弧度 var txt = aCode[j];//得到隨機的一個內容 show_num[i] = txt.toLowerCase(); var x = 10 + i * 20;//文字在canvas上的x坐標 var y = 20 + Math.random() * 8;//文字在canvas上的y坐標 context.font = "bold 24px 微軟雅黑"; context.translate(x, y); context.rotate(deg); context.fillStyle = randomColor(); context.fillText(txt, 0, 0); context.rotate(-deg); context.translate(-x, -y); } for (var i = 0; i <= 5; i++) { //驗證碼上顯示線條 context.strokeStyle = randomColor(); context.beginPath(); context.moveTo(Math.random() * canvas_width, Math.random() * canvas_height); context.lineTo(Math.random() * canvas_width, Math.random() * canvas_height); context.stroke(); } for (var i = 0; i <= 20; i++) { //驗證碼上的小點 context.strokeStyle = randomColor();//隨機生成 context.beginPath(); var x = Math.random() * canvas_width; var y = Math.random() * canvas_height; context.moveTo(x, y); context.lineTo(x + 1, y + 1); context.stroke(); } } function randomColor() {//得到隨機的顏色值 var r = Math.floor(Math.random() * 256); var g = Math.floor(Math.random() * 256); var b = Math.floor(Math.random() * 256); return "rgb(" + r + "," + g + "," + b + ")"; }</script><body> <div class="code"> <input type="text" value="" placeholder="請輸入驗證碼" class="input-val"> <canvas id="canvas" width="100" height="30"></canvas> <button class="btn">驗證</button> </div></body></html>
以上是“JS怎么實現驗證碼”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。