实现了一个简单的网页布局,其中包含了五个不同的盒子,每个盒子都有一个不同的背景图片,并且它们之间有一些间距。当鼠标悬停在某个盒子上时,它的背景图片会变暗,并且文字会变成白色。这些盒子和按钮都被放在一个容器中,整个页面看起来像一个画廊。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallery Layout</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="box" style="background-image: url('image1.jpg');">
<p>Box 1</p>
</div>
<div class="box" style="background-image: url('image2.jpg');">
<p>Box 2</p>
</div>
<div class="box" style="background-image: url('image3.jpg');">
<p>Box 3</p>
</div>
<div class="box" style="background-image: url('image4.jpg');">
<p>Box 4</p>
</div>
<div class="box" style="background-image: url('image5.jpg');">
<p>Box 5</p>
</div>
<button class="action-button">Click Me</button>
</div>
</body>
</html>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.container {
position: relative;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
width: 80%;
}
.box {
width: 100%;
height: 160px;
background-size: cover;
background-position: center;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
transition: background-color 0.5s, color 0.5s;
overflow: hidden;
position: relative;
text-align: center;
color: #000;
font-size: 1.2rem;
font-weight: bold;
}
.box:hover {
background-color: rgba(0, 0, 0, 0.5);
background-blend-mode: darken;
color: white;
}
.action-button {
position: absolute;
bottom: -60px;
left: 50%;
transform: translateX(-50%);
padding: 10px 20px;
font-size: 1rem;
color: white;
background-color: rgba(0, 0, 0, 0.6);
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.action-button:hover {
background-color: rgba(0, 0, 0, 0.8);
}
实现思路解析
- 全局样式:
- 设置
box-sizing: border-box
让宽高包含边框和内边距。 body
居中布局,overflow: hidden
防止滚动。
- 设置
- 容器样式:
- 使用 CSS 网格布局(
display: grid
)排列盒子。 gap
定义了盒子之间的间距。
- 使用 CSS 网格布局(
- 盒子样式:
- 每个盒子使用
background-image
设置背景。 - 添加过渡效果,使鼠标悬停时的变化流畅。
hover
时背景叠加一个半透明的黑色层,让背景变暗,文字变为白色。
- 每个盒子使用
- 按钮样式:
- 设置在容器底部,位置居中。
- 鼠标悬停时按钮背景色加深,添加阴影增强视觉效果。
效果展示
页面将显示五个等间距的盒子和一个按钮。鼠标悬停时会有动态效果,增强用户体验。
你可以根据需要调整图片路径(image1.jpg
~ image5.jpg
),或自定义样式以适应具体需求。
原创文章,作者:北单,如若转载,请注明出处:https://www.beidandianzhu.com/g/756.html