博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
水平时间轴 html + css
阅读量:6515 次
发布时间:2019-06-24

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

比较粗糙,效果如图

这个是写微信页面时写的,pc 也是一样的效果

代码如下:

付款剩余时间:23:58

css:

.time_line_box{        position: relative;        height: 60px;        overflow: hidden;    }    .time_line{        position: absolute;    z-index: 1;    left: 0;    top: 49px;    height: 2px;    background: #dfdfdf;    -webkit-transition: -webkit-transform 0.4s;    -moz-transition: -moz-transform 0.4s;    transition: transform 0.4s;    }    .order_item{        position: absolute;    bottom: 0;    z-index: 2;    text-align: center;    font-size: 13px;    padding-bottom: 15px;    color: #825FFB;    }    .order_item:after{        content: '';    position: absolute;    left: 50%;    right: auto;    transform: translateX(-50%);    bottom: -5px;    height: 10px;    width: 10px;    border-radius: 50%;    border: 2px solid #dfdfdf;    background-color: #f8f8f8;    }    .selected:after{        background-color: #845FFD;    border-color: #845FFD;    }    .filling_line{        position: absolute;    z-index: 1;    left: 0;    top: 0;    height: 100%;    width: 100%;    background-color: #845FFD;    transform-origin: left center;    transition-property: transform;    transition-duration: 0.3s;    transition-timing-function: initial;    transition-delay: initial;    }    .time_tip{        width: 100%;        height: 100px;        line-height: 70px;        text-align: center;        color: #151BFD;        border-bottom: 1px solid #ddd;    }

ps:没有写jquey 代码,因为目前写的项目是vux 框架 ,基于vue 和 we_ui,写jquery比较麻烦

     进度的渲染是根据.filling_line 的transform scaleX值 变化 ,所以如果写js 的话 根据不同

    状态改变相应的值就可以,如果 用的话,相关样式自行修改

转载于:https://www.cnblogs.com/vali/p/6211397.html

你可能感兴趣的文章
Linux系统_Centos7下安装Nginx
查看>>
《PHP和MySQL Web 开发》 第12章 MySQL高级管理
查看>>
数据库设计 Step by Step (6) —— 提取业务规则
查看>>
Redis客户端redisson实战
查看>>
连接到 JasperReports Server
查看>>
java处理高并发高负载类网站问题
查看>>
使用C#生成随机密码(纯数字或字母)和随机卡号(数字与字母组合)
查看>>
CAS服务器端集群
查看>>
设计模式 之 访问者模式
查看>>
JAVA Collections框架
查看>>
进制转换
查看>>
ASCII码
查看>>
java常用四种排序源代码
查看>>
win7 下硬盘安装Redhat7
查看>>
Redis 分布式锁的正确实现方式
查看>>
mysqldump 备份命令使用中的一些经验总结
查看>>
单词最近距离
查看>>
程序猿知道英语词汇
查看>>
数据存储(两)--SAX发动机XML记忆(附Demo)
查看>>
谈谈SQL 语句的优化技术
查看>>