网站常用鼠标点击输入框加亮显示特效,想实现这种效果很简单,可自己修改图片,实用文本框加亮特效。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>js代码实现当前输入框高亮显示特效_武鸣人</title> <meta name="keywords" content="武鸣人网站,武鸣信息网,武鸣本地网,武鸣信息资源平台,减肥,健身,励志,励志语录,js特效,网页特效,www.wuming.ren"> <meta name="description" content="欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。"> <style> body,form,h2,p,input{margin:0;padding:0;} body{color:#4f4f4f;font:14px/1.5 \5fae\8f6f\96c5\9ed1;} form{width:400px;background:#fef4eb;border:2px solid #f60;padding-bottom:10px;overflow:hidden;zoom:1;margin:10px auto;} form h2{color:#fe791e;font-size:16px;background:#ffebd7;border-bottom:2px solid #f60;padding:5px 10px;} form p{float:left;clear:both;width:100%;height:31px;margin-top:10px;line-height:31px;} form label,form input{float:left;} form label{width:100px;height:31px;text-align:right;} form input{border:0;font-family:\5fae\8f6f\96c5\9ed1;background:url(/img/20240224_www_wuming_ren_1.png) no-repeat;} form .www_wuming_ren,form .high_wuming_ren{width:203px;height:31px;padding-left:5px;line-height:31px;} form .high_wuming_ren{background-position:0 -31px;} form .f-btn{color:#fff;width:104px;height:31px;cursor:pointer;font-size:16px;background:#f60;line-height:31px;border-radius:5px;} </style> <script type="text/javascript"> window.onload = function () { var aInput = document.getElementsByTagName("input"); var i = 0; for (i = 0; i < aInput.length - 1; i++) { aInput[i].onfocus = function () { this.className = "high_wuming_ren" }; aInput[i].onblur = function () { this.className = "www_wuming_ren" } } };//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) </script> </head> <body> <a href="https://www.wuming.ren">武鸣人</a>,各种信息资源免费发布,分享励志语录经典短句,减肥健身常识,各种js特效代码。网站很好记住,wuming.ren(武鸣拼音.ren域名后缀)<hr> <!--欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。--> <script type="text/javascript" src="https://www.wuming.ren/ad/tc.js"></script> <script type="text/javascript" src="https://www.wuming.ren/ad/a.js"></script> <form> <h2>用户登录</h2> <p><label>用户名:</label><input class="www_wuming_ren" type="text" /></p> <p><label>密码:</label><input class="www_wuming_ren" type="password" /></p> <p><label></label><input class="f-btn" type="button" value="登 录" /></p> </form> </body> </html>
本文来自武鸣人网站,转载请注明出处