在CSS中,可以使用linear-gradient
和伪元素来实现一个简单的时间线效果。以下是一个实现时间线的基本示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Time Line Example</title>
<style>
.timeline {
position: relative;
padding: 20px 0;
margin-top: 20px;
color: #333;
}
.timeline:before {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 6px;
height: 100%;
background: #f0f0f0;
border-radius: 4px;
}
.timeline-item {
position: relative;
margin-left: -17px;
margin-right: 15px;
padding-left: 65px;
text-align: left;
}
.timeline-item:before,
.timeline-item:after {
content: '';
position: absolute;
top: 0;
}
.timeline-item:before {
left: -13px;
width: 20px;
height: 100%;
background: #f0f0f0;
border-radius: 50%;
}
.timeline-item:after {
left: -11px;
top: 50%;
transform: translateY(-50%);
width: 10px;
height: 10px;
background: #f0f0f0;
border-radius: 50%;
z-index: 10;
}
</style>
</head>
<body>
<div class="timeline">
<div class="timeline-item">
<div>2023年1月1日</div>
<div>新年之初,世界在回春。</div>
</div>
<div class="timeline-item">
<div>2023年1月2日</div>
<div>继续前行,面向未知。</div>
</div>
<!-- 更多时间线项... -->
</div>
</body>
</html>
这段代码会创建一个带有时间轴的简单时间线,每个时间轴项都有一个圆形的标记。您可以根据需要添加更多的.timeline-item
来扩展时间线。