博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
移动端H5的简单时间轴效果
阅读量:6307 次
发布时间:2019-06-22

本文共 2338 字,大约阅读时间需要 7 分钟。

最近给移动端写接口,写完了才告诉我其中两个页面是H5的,需要我这边来做。本着“我是公司一块砖,哪里需要哪里搬”的原则,让做就做。结果一看原型,还有时间轴效果。第一反应:找度娘,找github,找oschina~~~确实也有不少的时间轴插件,但是总觉得都太花哨了,大道至简,自己来一个吧。

Talk is cheap,show me the code!

先上最终效果图

img_bf5aa590e272a06fc7100414a002f98a.png
简单到爆炸的页面

准备工作

两张图片,1:小圆点,2:左边的一根竖线

开始撸代码

html代码

时间轴

Picture
我的2017
吃饭睡觉写代码
2017-12-16 08:08:08
Picture
我的2016
吃饭睡觉写代码
2016-12-16 08:08:08
css样式
body {        text-align: center;        font-size: 14px;        line-height: 1.5rem;        margin: auto;    }    .timeline {        position: relative;        text-align: left;    }    .timeline::before {        content: '';        position: absolute;        top: 0;        left: 18px;        height: 100%;        width: 2px;        background: url("/images/v-line.png");    }    .ctimeline-img {        position: relative;        left: 12px;        top: 15px;        width: 13px;        height: 13px;    }    .cd-date {        font-size: 12px;        color: #cccccc;    }    .item {        float: left;        clear: both;        margin-bottom: 23px;    }    /* 向上的箭头 */    .dot-top {        position: relative;        top: 21px;        left: 3rem;        font-size: 0;        line-height: 0;        border: 10px dashed #eeeeee;        border-top-width: 0;        border-right-color: transparent;        border-bottom-style: solid;        border-left-color: transparent;    }    .msgBox {        border: 2px solid #eeeeee;        width: 100%;        padding: 2%;        margin-top: 2%;    }    .r-info {        position: relative;        top: 0px;        left: 30px;        width: 80%    }

其他说明

1、这是用的div效果,同时也可以用border-image的气泡效果实现

2、以上代码只是手机端的,没有做适配,因此无法放到PC端使用
3、技术是为业务服务的,当出现了PC端的需求再做PC端的实现吧

转载地址:http://grixa.baihongyu.com/

你可能感兴趣的文章
React Native vs. Cordova.
查看>>
Android之Animator
查看>>
mysql memory引擎 the table is full 问题
查看>>
如何在CentOS配置Apache的HTTPS服务
查看>>
【工具使用系列】关于 MATLAB 小波分析和分形几何,你需要知道的事
查看>>
nodejs在Linux下使用图片相关模块出现Error: write EPIPE
查看>>
.net表单无法提交html代码解决
查看>>
安卓Activity和dialog中屏蔽返回键和home键
查看>>
随即获取1~100之间100个数,并排序
查看>>
DIV阴影效果
查看>>
【基础】华为设备基本和高级ACL配置实战
查看>>
规则与法则:中国式创业的界限与群像
查看>>
How to verification of the backup for Win server
查看>>
Sed、Awk和grep 学习笔记(一)
查看>>
row_number()over函数的使用
查看>>
viewPort(浏览器窗口的整个显示区域)
查看>>
公司Xen server虚拟化中虚拟机磁盘文件丢失的处理办法
查看>>
关于垂直对齐方式vertical-align
查看>>
特朗普:美国尚未与中国就中兴事宜达成任何协议
查看>>
Java并发编程之美
查看>>