用html+css3写一个网页用户登录 背景是一张图片 登陆窗口在右边 左边显示二手交易平台
时间: 2024-04-01 19:37:25 浏览: 85
好的,以下是一个简单的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>用户登录</title>
<style type="text/css">
body {
background-image: url("background.jpg"); /* 设置背景图片 */
background-size: cover; /* 背景图片大小自适应 */
background-repeat: no-repeat; /* 背景图片不重复 */
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* 设置容器高度为整个视口高度 */
}
.form-container {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
width: 400px;
}
input[type="text"], input[type="password"] {
padding: 10px;
margin: 10px 0;
border-radius: 5px;
border: none;
box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
width: 100%;
}
input[type="submit"] {
background-color: #4CAF50;
color: #fff;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
margin-top: 10px;
}
input[type="submit"]:hover {
background-color: #3E8E41;
}
h1 {
text-align: center;
color: #fff;
font-size: 36px;
margin-bottom: 50px;
text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
</style>
</head>
<body>
<div class="container">
<div class="form-container">
<h1>二手交易平台</h1>
<form>
<label>用户名:</label>
<input type="text" name="username" required>
<label>密码:</label>
<input type="password" name="password" required>
<input type="submit" value="登录">
</form>
</div>
</div>
</body>
</html>
```
在这个例子里,我们使用了一个 `container` 容器来居中展示登录窗口,登录窗口使用了一个白色背景,圆角边框和阴影效果,以及简单的表单元素来实现用户登录功能。左侧的文字部分使用了 `h1` 标签来显示标题。
你可以将这个代码保存为一个 `.html` 文件,在本地浏览器中打开它,就可以看到效果了。当然,你需要将 `background.jpg` 替换为你自己的背景图片。
阅读全文