帮我生成一段html炫酷登入界面
时间: 2023-10-15 09:06:02 浏览: 96
炫酷登录页面.html
好的,以下是一段 HTML 代码,用于生成一个炫酷的登录界面:
```html
<!DOCTYPE html>
<html>
<head>
<title>炫酷登录界面</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: #1a1a1a;
}
.login-box {
width: 500px;
margin: 100px auto;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.login-box h2 {
text-align: center;
color: #333;
padding: 20px 0;
}
.input-group {
margin: 20px;
}
.input-group input {
width: 100%;
padding: 10px;
border-radius: 4px;
border: none;
margin-bottom: 10px;
font-size: 16px;
}
.input-group input:focus {
outline: none;
}
.input-group label {
color: #666;
font-size: 16px;
margin-bottom: 5px;
display: block;
}
.btn {
background-color: #333;
color: #fff;
padding: 10px 20px;
border-radius: 4px;
border: none;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #555;
}
</style>
</head>
<body>
<div class="login-box">
<h2>登录</h2>
<form>
<div class="input-group">
<label for="username">用户名</label>
<input type="text" id="username" name="username" required>
</div>
<div class="input-group">
<label for="password">密码</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit" class="btn">登录</button>
</form>
</div>
</body>
</html>
```
这段代码会生成一个带有登录表单的页面,具有以下特点:
- 页面背景色为深色调,使整个页面看起来更加酷炫。
- 登录框采用白色背景,具有圆角和阴影效果,使其看起来更具立体感。
- 用户名和密码输入框采用灰色背景,具有圆角和边框效果,使其看起来更美观。
- 登录按钮采用深色背景和浅色文字,具有圆角和边框效果,使其看起来更美观。同时,当鼠标移到按钮上时,背景色会有变化,增加了交互性。
阅读全文