上一篇
html如何设计验证码
- 行业动态
- 2024-04-04
- 4125
设计验证码需要考虑到用户体验和安全性,以下是一个简单的HTML验证码设计示例:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF8"> <meta name="viewport" content="width=devicewidth, initialscale=1.0"> <title>验证码示例</title> <style> .captcha { display: flex; justifycontent: center; alignitems: center; height: 100px; marginbottom: 20px; } .captcha img { cursor: pointer; } </style> </head> <body> <div > <img id="captchaImg" src="captcha.php" alt="验证码图片"> <input type="text" id="captchaInput" placeholder="请输入验证码"> </div> <script> document.getElementById('captchaImg').addEventListener('click', function() { this.src = 'captcha.php?time=' + new Date().getTime(); }); </script> </body> </html>
在这个示例中,我们创建了一个名为.captcha的容器,用于存放验证码图片和输入框,验证码图片通过<img>标签插入,并使用JavaScript监听点击事件,以便在用户点击时刷新验证码图片。
接下来,我们需要创建一个名为captcha.php的文件来生成验证码图片,以下是一个简单的PHP代码示例:
<?php session_start(); header('ContentType: image/png'); // 生成随机字符串作为验证码 $code = ''; for ($i = 0; $i < 5; $i++) { $code .= chr(rand(65, 90)); // 大写字母 $code .= chr(rand(97, 122)); // 小写字母 } // 将验证码存储在会话中,以便稍后验证 $_SESSION['captcha'] = $code; // 创建图像资源 $image = imagecreatetruecolor(100, 30); $backgroundColor = imagecolorallocate($image, 255, 255, 255); $textColor = imagecolorallocate($image, 0, 0, 0); // 绘制背景色 imagefilledrectangle($image, 0, 0, 100, 30, $backgroundColor); // 绘制验证码文本 imagestring($image, 5, 20, 10, $code, $textColor); // 输出图像资源 imagepng($image); imagedestroy($image); ?>
这个PHP文件首先生成一个随机字符串作为验证码,然后将其存储在会话中,接着,它创建一个图像资源,并设置背景色和文本颜色,它在图像上绘制验证码文本,并将图像输出为PNG格式。
本站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本站,有问题联系侵删!
本文链接:http://www.xixizhuji.com/fuzhu/306493.html