源码论坛,商业源码下载,尽在锦尚中国商业源码论坛

标题: 百度风格的input美化代码,美化你的输入框代码 [打印本页]

作者: 欧阳锋    时间: 2020-2-29 16:06
标题: 百度风格的input美化代码,美化你的输入框代码
代码特效如图:

(, 下载次数: 62)


大家看看美化前的代码:

(, 下载次数: 69)


  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>登录注册页面</title>
  6.     <style>
  7.         *{
  8.            margin: 0;
  9.             padding: 0;
  10.         }
  11.         body{
  12.             background-color: antiquewhite;

  13.         }
  14.         a{
  15.             text-decoration: none;
  16.         }
  17.         .wrap{
  18.             margin-left: 40%;
  19.             margin-top: 10%;
  20.         }
  21.         p{
  22.             margin-bottom: 10px;
  23.         }
  24.         

  25.     </style>
  26. </head>
  27. <body>
  28.     <div class="wrap">
  29.         <form action="http://www.baidu.com" method="post">
  30.             <p>
  31.                 <label for="user">用户名</label>
  32.                 <input type="text" name="userName" id="user" placeholder="请设置用户名">
  33.             </p>
  34.             <p>
  35.                 <lable for="phoneNumber">手机号</lable>
  36.                 <input type="text" name="phoneNumber" id="phoneNumber" placeholder="可用于登录和找回密码">
  37.             </p>
  38.             <p>
  39.                 <lable for="password">密&nbsp;&nbsp;&nbsp;&nbsp;码</lable>
  40.                 <input type="password" name="password" id="password" placeholder="请设置登录密码">
  41.             </p>
  42.             <p>
  43.                 <lable for="verificationCode">验证码</lable>
  44.                 <input type="text" name="verification" id="verificationCode" placeholder="请输入验证码">
  45.                 <input type="button" name="button" value="获取短信验证码">
  46.             </p>
  47.             <p>
  48.                 <input type="checkbox" value="">
  49.                 阅读并接受
  50.                 <a href="#">《百度用户协议》</a>
  51.                 及
  52.                 <a href="#">《百度隐私权保护声明》</a>
  53.             </p>
  54.             <P>
  55.                 <input type="button" value="注册" style="height:30px; width:50px;">
  56.             </P>
  57.         </form>
  58.     </div>
  59. </body>
  60. </html>
复制代码







欢迎光临 源码论坛,商业源码下载,尽在锦尚中国商业源码论坛 (https://bbs.52jscn.com/) Powered by Discuz! X3.3