溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JS怎樣生成隨機驗證碼

發(fā)布時間:2021-02-01 10:58:13 來源:億速云 閱讀:217 作者:小新 欄目:web開發(fā)

小編給大家分享一下JS怎樣生成隨機驗證碼,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

具體內容如下

JS怎樣生成隨機驗證碼

在網(wǎng)站中我們很常見到形形色色的驗證碼,今天我們來用JS來生成一個隨機的二維碼。

我們需要用到canvas來進行驗證碼的繪制

什么是Canvas

HTML5 的 canvas 元素使用 JavaScript 在網(wǎng)頁上繪制圖像。
畫布是一個矩形區(qū)域,您可以控制其每一像素。
canvas 擁有多種繪制路徑、矩形、圓形、字符以及添加圖像的方法。

思路

我們要做的二維碼首先要有隨機的數(shù)字,其次就是要有隨機的位置。

HTML

<canvas id="canvas" >
</canvas>

JS

function getVerification() { //二維碼
 var ctx = document.getElementById("canvas").getContext("2d");
 // 清空畫布
 ctx.clearRect(0,0, 400, 400);
 // 設置字體
 ctx.font = "128px bold 黑體";
 // 設置垂直對齊方式
 ctx.textBaseline = "top";
 // 設置顏色
 ctx.fillStyle = randomColor();
 // 繪制文字(參數(shù):要寫的字,x坐標,y坐標)
 ctx.fillText(getRandomNum(10), 0, getRandomNum(50));
 ctx.fillStyle = randomColor();
 ctx.fillText(getRandomNum(10), 50, getRandomNum(50));
 ctx.fillStyle = randomColor();
 ctx.fillText(getRandomNum(10), 100, getRandomNum(50));
 ctx.fillStyle = randomColor();
 ctx.fillText(getRandomNum(10), 150, getRandomNum(50));
}

我們使用ctx.fillStyle = randomColor();來設置隨機的顏色,每寫一個數(shù)字換一個顏色,randomColoe()函數(shù)代碼如下,可以隨機生成十六進制顏色碼。

function randomColor() {
 var colorValue = "0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f";
 var colorArray = colorValue.split(",");
 var color = "#";
 for (var i = 0; i < 6; i++) {
 color += colorArray[Math.floor(Math.random() * 16)];
 }
 return color;
}

我們使用getRandomNum()來獲取隨機顯示的數(shù)字和隨機每次字體的y軸方向的位置。驗證碼的每個數(shù)字分別進行獲取。傳入的參數(shù)n來確定隨機數(shù)范圍。代碼如下:

function getRandomNum(n){
 return parseInt(Math.random() * n); 
}

完整代碼:

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <title>2</title>
</head>

<body>
 <canvas id="canvas" ></canvas>
 <span id="yanzhengma"></span><button onclick="getVerification()">看不清</button>
 <script>
 function randomColor() {
 var colorValue = "0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f";
 var colorArray = colorValue.split(",");
 var color = "#";
 for (var i = 0; i < 6; i++) {
 color += colorArray[Math.floor(Math.random() * 16)];
 }
 return color;
 }
 function getRandomNum(n){
 return parseInt(Math.random() * n); 
 }
 function getVerification() {
 var ctx = document.getElementById("canvas").getContext("2d");
 ctx.clearRect(0,0, 400, 400);
 // 設置字體
 ctx.font = "128px bold 黑體";
 // 設置垂直對齊方式
 ctx.textBaseline = "top";
 // 設置顏色
 ctx.fillStyle = randomColor();
 // 繪制文字(參數(shù):要寫的字,x坐標,y坐標)
 ctx.fillText(getRandomNum(10), 0, getRandomNum(50));
 ctx.fillStyle = randomColor();
 ctx.fillText(getRandomNum(10), 50, getRandomNum(50));
 ctx.fillStyle = randomColor();
 ctx.fillText(getRandomNum(10), 100, getRandomNum(50));
 ctx.fillStyle = randomColor();
 ctx.fillText(getRandomNum(10), 150, getRandomNum(50));
 }
 getVerification();
 </script>
</body>
</html>

以上是“JS怎樣生成隨機驗證碼”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

AI