用html+css+js实现在一个盒子中装下四个模块分别是故障报修模块、设备维修模块配件更换模块以及其他问题模块,模块可以点击用来跳转页面。配色简洁大方。四个模块为两个一行的分布。
时间: 2023-09-11 16:09:47 浏览: 81
下面是一个简单的示例代码,实现了上述需求:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>模块页面</title>
<style>
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5f5f5;
}
.module {
width: 200px;
height: 200px;
margin: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
border-radius: 10px;
transition: transform 0.2s ease-in-out;
cursor: pointer;
}
.module:hover {
transform: scale(1.05);
}
.module h2 {
font-size: 24px;
margin-top: 20px;
color: #333;
text-align: center;
}
.module img {
width: 80px;
height: 80px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="module" onclick="location.href='fault.html'">
<img src="fault.png" alt="故障报修">
<h2>故障报修模块</h2>
</div>
<div class="module" onclick="location.href='maintenance.html'">
<img src="maintenance.png" alt="设备维修">
<h2>设备维修模块</h2>
</div>
<div class="module" onclick="location.href='replacement.html'">
<img src="replacement.png" alt="配件更换">
<h2>配件更换模块</h2>
</div>
<div class="module" onclick="location.href='other.html'">
<img src="other.png" alt="其他问题">
<h2>其他问题模块</h2>
</div>
</div>
</body>
</html>
```
在这个示例中,我们使用了Flex布局来实现四个模块的分布,并使用了CSS3的过渡效果和伪类hover来实现模块的放大效果。我们还使用了JavaScript的location.href来实现模块的点击跳转功能。
你可以根据自己的需要修改样式和链接地址,以达到更好的效果。
阅读全文