css实现时间线

效果:

<ul class="timeline-list">

<li class="timeline-item" v-for="(i, index) in tt" :key="index">

<div class="tail"></div>

<div class="node"></div>

<div class="wrapper">

<div class="times">{{ i.time }}</div>

<div class="cont">{{ i.cont }}</div>

</div>

</li>

</ul>

.timeline-list {

margin: 0;

padding: 16px;

font-size: 12px;

list-style: none;

.timeline-item:last-child .tail {

display: none;

}

.timeline-item {

position: relative;

padding-bottom: 14px;

}

.tail {

position: absolute;

left: 0;

height: 100%;

border-left: 1px dotted #d7d8db;

}

.node {

position: absolute;

background: #fff;

border-radius: 50%;

display: flex;

justify-content: center;

align-items: center;

left: -2px;

width: 6px;

height: 6px;

background: #0a7fef;

}

.wrapper {

position: relative;

top: -6px;

left: 8px;

}

.times {

margin-bottom: 2px;

padding-top: 0px;

line-height: 17px;

color: #373d4a;

font-size: 12px;

}

.cont {

line-height: 17px;

color: #8b8b8b;

font-size: 12px;

}

}

相关推荐
安分小尧9 分钟前
[特殊字符] 使用 Handsontable 构建一个支持 Excel 公式计算的动态表格
前端·javascript·react.js·typescript·excel
好_快17 分钟前
Lodash源码阅读-baseClone
前端·javascript·源码阅读
Double Point18 分钟前
(三十一) Dart 中的网络请求教程:从知乎日报 API 获取数据
前端
excel20 分钟前
webpack 核心编译器 十二 节
前端
好_快20 分钟前
Lodash源码阅读-baseToString
前端·javascript·源码阅读
好_快20 分钟前
Lodash源码阅读-initCloneByTag
前端·javascript·源码阅读
木木黄木木24 分钟前
HTML5重力球动画实现详解
前端·html·html5
好_快24 分钟前
Lodash源码阅读-cloneSymbol
前端·javascript·源码阅读
excel25 分钟前
webpack 核心编译器 十一 节
前端
好_快27 分钟前
Lodash源码阅读-cloneRegExp
前端·javascript·源码阅读