用html+css+js实现在一个盒子中装下四个模块分别是故障报修模块、设备维修模块配件更换模块以及其他问题模块,模块可以点击用来跳转页面,前两个模块位于同一行后两个模块位于第二行。配色简洁大方。
时间: 2023-09-12 11:05:54 浏览: 57
可以尝试以下代码实现:
HTML部分:
```
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="module" onclick="location.href='repair.html'">
<h3>故障报修模块</h3>
</div>
</div>
<div class="col-md-6">
<div class="module" onclick="location.href='maintenance.html'">
<h3>设备维修模块</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="module" onclick="location.href='replacement.html'">
<h3>配件更换模块</h3>
</div>
</div>
<div class="col-md-6">
<div class="module" onclick="location.href='other.html'">
<h3>其他问题模块</h3>
</div>
</div>
</div>
</div>
```
CSS部分:
```
.container {
max-width: 800px;
margin: 0 auto;
}
.row {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.col-md-6 {
flex-basis: 48%;
}
.module {
background-color: #f1f1f1;
border-radius: 10px;
padding: 20px;
text-align: center;
cursor: pointer;
}
.module:hover {
background-color: #ddd;
}
h3 {
margin-top: 0;
}
```
JS部分:
```
// 可以根据需要添加JS代码
```
这个代码实现了一个简单的四个模块的UI界面,可以点击模块跳转到相应的页面。样式使用了简洁大方的配色方案。可以根据需要添加JS代码来实现更多的功能。
阅读全文