用纯CSS实现简单的纵向时间轴

2023-11-05 18:59

本文主要是介绍用纯CSS实现简单的纵向时间轴,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

特别感谢

https://www.lingtings.com/demo/html/2017/09/13/18_time_axis/

效果

在这里插入图片描述

CSS实现思路及注意事项

  1. :nth-child(even):nth-child(odd) 选择器,实现对奇偶数元素样式的批量设置。
  2. . margin-left: 50%;,使用百分数。
  3. position: abusolute;,使用绝对定位调整位置。
  4. 时间轴的轴线、文字气泡的箭头部分,可使用 ::before::after 伪元素实现。
  5. 主体文字部分不可使用绝对定位,否则全部脱离文档流,无法撑开最外层box。

代码

HTML部分
<body><div class="con"><h2 class="title">周杰伦作品集</h2><div class="timeline-con"><div class="timeline-post"><div class="timeline-date">2000</div><div class="timeline-icon-con"><div class="timeline-icon"><div class="timeline-icon-inner"></div></div></div><div class="timeline-content"><h3>Jay</h3><p>由周杰伦制作、作曲,方文山、徐若瑄等人作词,收录了10首歌曲,2000年11月7日发行 ,2001年,该专辑获得台湾金曲奖最佳流行音乐演唱专辑奖、IFPI香港唱片销量大奖十大销量国语唱片等奖项。</p> </div></div><div class="timeline-post"><div class="timeline-date">2001</div><div class="timeline-icon-con"><div class="timeline-icon"><div class="timeline-icon-inner"></div></div></div><div class="timeline-content"><h3>范特西</h3><p>共收录10首歌曲。该专辑的制作人由周杰伦担任。2002年,该专辑获得第十三届金曲奖颁奖礼最佳流行音乐专辑奖、新加坡金曲奖年度最畅销专辑等奖项。周杰伦凭借该专辑获得第十三届金曲奖颁奖最佳专辑制作人奖、第二届全球华语歌曲排行榜颁奖礼最佳制作人等奖项。</p> </div></div><div class="timeline-post"><div class="timeline-date">2002</div><div class="timeline-icon-con"><div class="timeline-icon"><div class="timeline-icon-inner"></div></div></div><div class="timeline-content"><h3>八度空间</h3><p>由周杰伦作曲并担任制作人,方文山、许世昌、刘耕宏、周杰伦作词。专辑于2002年7月18日发行,共收录10首歌曲。</p> </div></div><div class="timeline-post"><div class="timeline-date">2003</div><div class="timeline-icon-con"><div class="timeline-icon"><div class="timeline-icon-inner"></div></div></div><div class="timeline-content"><h3>叶惠美</h3><p>共收录了11首歌曲。专辑的制作人由周杰伦担任。2004年,该专辑获得了第15届金曲奖最佳流行音乐演唱专辑奖、新城国语力颁奖礼新城国语力亚洲大碟奖、第四届全球华语歌曲排行榜颁奖典礼年度最受欢迎专辑奖。</p> </div></div><div class="timeline-post"><div class="timeline-date">2004</div><div class="timeline-icon-con"><div class="timeline-icon"><div class="timeline-icon-inner"></div></div></div><div class="timeline-content"><h3>七里香</h3><p>该专辑的制作人由周杰伦担任,共收录了10首歌曲。2005年,该专辑获得第16届台湾金曲奖年度最佳专辑提名、HITO流行音乐奖年度DJ最爱专辑等奖项。</p> </div></div></div></div>
</body>
CSS部分
<style>* {padding: 0;margin: 0;}body {font-family:'Courier New', Courier, monospace, sans-serif;}.con {width: 1000px;margin: 0 auto;}.title {text-align: center;font-size: 24px;color: #333;margin-top: 50px;text-align: center;    }.timeline-con {position: relative;margin: 100px 30px;position: relative;}.timeline-con::before {content: '';display: block;width: 1px;height: 100%;background: linear-gradient(#feeeed , #f05b72, #feeeed);background: -webkit-linear-gradient(#feeeed , #f05b72, #feeeed);background: -o-linear-gradient(#feeeed , #f05b72, #feeeed);background: -moz-linear-gradient(#feeeed , #f05b72, #feeeed); position: absolute;left: 50%;top: 0;}.timeline-post {width: 50%;margin-left: 50%;margin-bottom: 60px;}.timeline-post:nth-child(even) {margin-left: 0;}.timeline-date {font-size: 20px;font-weight: bold;color: #666;position: absolute;right: 50%;margin-top: 15px;margin-right: 24px;}.timeline-post:nth-child(even) .timeline-date {left: 50%;margin-left: 24px;}.timeline-icon-con {width: 38px;height: 50px;background-color: #fff;display: flex;justify-content: center;align-items: center;position: absolute;left: 50%;margin-left: -18px;}.timeline-icon {width: 16px;height: 16px;border-radius: 50%;-webkit-border-radius: 50%;-moz-border-radius: 50%;-ms-border-radius: 50%;-o-border-radius: 50%;border: 3px solid #d93a49;}.timeline-content {position: relative;top: -6px;font-size: 18px;color: #666;line-height: 36px;margin: 0 0 0 44px;padding: 15px 16px 20px;background-color: #ffeeed;  border-radius: 5px;-webkit-border-radius: 5px;-moz-border-radius: 5px;-ms-border-radius: 5px;-o-border-radius: 5px;}.timeline-post:nth-child(even) .timeline-content {margin: 0 44px 0 0;text-align: right;}.timeline-post:nth-child(odd) .timeline-content::before {content: '';display: inline-block;width: 0;height: 0;border-top: 8px solid transparent;border-right: 16px solid #ffeeed;border-bottom: 8px solid transparent;border-left: 16px solid transparent;position: absolute;top: 22px;left: -30px;}.timeline-post:nth-child(even) .timeline-content::after {content: '';display: inline-block;width: 0;height: 0;border-top: 8px solid transparent;border-right: 16px solid transparent;border-bottom: 8px solid transparent;border-left: 16px solid #ffeeed;position: absolute;top: 22px;right: -30px;}.timeline-content h3 {font-size: 18px;color: #f05b72;}.timeline-content p {margin-top: 0;}
</style>

这篇关于用纯CSS实现简单的纵向时间轴的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/351855

相关文章

Python将博客内容html导出为Markdown格式

《Python将博客内容html导出为Markdown格式》Python将博客内容html导出为Markdown格式,通过博客url地址抓取文章,分析并提取出文章标题和内容,将内容构建成html,再转... 目录一、为什么要搞?二、准备如何搞?三、说搞咱就搞!抓取文章提取内容构建html转存markdown

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

MySQL双主搭建+keepalived高可用的实现

《MySQL双主搭建+keepalived高可用的实现》本文主要介绍了MySQL双主搭建+keepalived高可用的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、测试环境准备二、主从搭建1.创建复制用户2.创建复制关系3.开启复制,确认复制是否成功4.同

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("