这篇文章主要为大家详细介绍了Html制作简单而漂亮的登录页面具体代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
先来看看样子。
html源码,需要使用的话自己修改html即可或者在评论区留言:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Login</title> <link rel="stylesheet" type="text/css" href="Login.css"/> </head> <body> <div id="login"> <h1>配置WIFI</h1> <form name="my"> <h3>配置WIFI</h3> <input type="text" required="required" placeholder="WIFI名称" name="u" id="aa"></input> <input type="password" required="required" placeholder="WIFI密码" name="p" id="bb"></input> <h3>配置MQTT</h3> <input type="text" placeholder="MQTT服务器地址" name="u" id="aa"></input> <input type="text" placeholder="MQTT服务器端口" name="p" id="bb"></input> <input type="text" placeholder="MQTT用户名" name="u" id="aa"></input> <input type="password" placeholder="MQTT密码" name="p" id="bb"></input> <button class="but" onclick="wifi()">登录</button> </form> </div> <script language="javascript"> function wifi() { var ssid=my.u.value; var password=bb.value; var xmlhttp=new XMLHttpRequest(); xmlhttp.open("GET","/HandleVal?ssid="+ssid+"&password="+password,true); xmlhttp.send() } </script> </body> </html>
|
css代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
| html{ width: 100%; height: 100%; overflow: hidden; font-style: sans-serif; } body{ width: 100%; height: 100%; font-family: 'Open Sans',sans-serif; margin: 0; } #login{ position: absolute; top: 30%; left:50%; margin: -150px 0 0 -150px; width: 300px; height: 300px; } #login h1{ color: #4a77d4; text-shadow:0 0 10px; letter-spacing: 1px; text-align: center; } h1{ font-size: 2em; margin: 0.67em 0; } input{ width: 278px; height: 18px; margin-bottom: 10px; outline: none; padding: 10px; font-size: 13px; color: #fff; border-top: 1px solid #312E3D; border-left: 1px solid #312E3D; border-right: 1px solid #312E3D; border-bottom: 1px solid #56536A; border-radius: 4px; background-color: #2D2D3F; } .but{ width: 300px; min-height: 20px; display: block; background-color: #4a77d4; border: 1px solid #3762bc; color: #fff; padding: 9px 14px; font-size: 15px; line-height: normal; border-radius: 5px; margin: 0; }
|
总结:
代码如下:
1 2
| <input type="text" required="required" placeholder="WIFI名称" name="u"></input> <input type="password" required="required" placeholder="WIFI密码" name="p"></input>
|
placeholder=”用户名”的作用:占位符
以上就是本文的全部内容,希望对大家的学习有所帮助。