layui實現登陸界面驗證碼
本文實例為大傢分享瞭layui實現登陸界面驗證碼的具體代碼,供大傢參考,具體內容如下
效果圖:
html:
<div class="layui-form-item"> <div class="layui-col-xs6" > <input type="text" value="" placeholder="請輸入驗證碼(不區分大小寫)" class="input-val"> <canvas id="canvas" width="100" height="30"></canvas> </div> <div> <input type="button" value="登錄" class="layui-btn layui-btn-fluid" lay-submit lay-filter="login"> </div> </div>
接下來就是JS:
var show_num=[]; $(function() { draw(show_num); $("#canvas").on('click',function() { draw(show_num); }) });
再調用的兩個函數:
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,1,2,3,4,5,6,7,8,9,0"; var aCode = sCode.split(","); var aLength = aCode.length;//獲取到數組的長度 for (var i = 0; i <= 3; i++) { var j = Math.floor(Math.random() * aLength);//獲取到隨機的索引值 var deg = Math.random() * 30 * Math.PI / 180;//產生0~30之間的隨機弧度 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 23px 微軟雅黑"; 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 <= 30; 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 + ")"; }
樣式得自己根據項目調配噢 下面是我的樣式:
<style> .code { width: 100%; margin: 0 auto; } .input-val { width: 63%; background: #ffffff; height: 2.8rem; padding: 0 2%; border-radius: 5px; border: none; border: 1px solid rgba(0,0,0,.2); font-size: 0.9rem; } #canvas { float: right; display: inline-block; border: 1px solid #ccc; border-radius: 5px; cursor: pointer; } </style>
以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。
推薦閱讀:
- JavaScript+html實現前端頁面隨機二維碼驗證
- JavaScript+html實現前端頁面滑動驗證
- 微信小程序使用canvas繪制鐘表
- 繪制微信小程序驗證碼功能的實例代碼
- javascript實現點擊產生隨機圖形