首页
网页制作
网络编程
脚本专栏
数据库
网站运营
网络安全
平面设计
CMS教程
搜索
建站极客
网页制作
CSS
正文
网页中时光轴CSS实现
所属分类:
网页制作
/
CSS
阅读数: 540
收藏 0
赞 0
分享
本文实例为大家分享了网页中时光轴的制作方法,供大家参考,具体内容如下
效果图:
实现代码:
XML/HTML Code
复制内容到剪贴板
<!DOCTYPE html
>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
title
>
时光轴
</
title
>
<
style
>
.container {
width: 800px;
margin: 50px auto;
}
.vertical-timeline {
color: #FFF;
font-family: "微软雅黑", "Microsoft YaHei";
}
.vertical-timeline-block {
width: 100%;
border-left: 2px solid #DDD;
margin: 0 20px;
position: relative;
padding-bottom: 30px;
}
/* 时间轴的左侧图标 */
.vertical-timeline-icon {
width: 40px;
height: 40px;
border-radius: 20px;
position: absolute;
left: -22px;
top: 10px;
text-align: center;
line-height: 40px;
cursor: pointer;
transition: all 0.2s ease-in;
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
}
.vertical-timeline-block {
cursor: pointer;
}
.vertical-timeline-block:hover .vertical-timeline-icon {
width: 50px;
height: 50px;
border-radius: 25px;
line-height: 50px;
left: -27px;
box-shadow: 0 0 5px #CCC;
font-size: 25px;
}
/* 时间轴的左侧图标的各种样式 */
.v-timeline-icon1 {
background-color: #2aabd2;
}
.v-timeline-icon2 {
background-color: #5cb85c;
}
.v-timeline-icon3 {
background-color: #8c8c8c;
}
/* 时间轴的左侧图标上的序号*/
.vertical-timeline-icon i {
font-style: normal;
color: #FFF;
}
/* 时间轴上的具体内容 */
.vertical-timeline-content {
background-color: #5bc0de;
margin-left: 60px;
padding: 20px 30px;
border-radius: 5px;
position: relative;
}
/* 时间轴上的具体内容左侧箭头 */
.vertical-timeline-content:before {
content: '';
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid #5bc0de;
border-left: 10px solid transparent;
position: absolute;
right: 100%;
top: 20px;
}
/* 时间轴的具体内容的格式 */
.timeline-content {
text-indent: 2em;
}
.time-more {
overflow: hidden;
}
.time-more .time {
float: left;
line-height: 40px;
display: inline-block;
}
.time-more .more {
float: right;
}
.time-more .more a {
display: inline-block;
height: 20px;
padding: 8px 15px;
color: #FFF;
text-decoration: none;
font-size: 15px;
}
/* “更多信息”的风格 */
.more-style1 {
border-radius: 5px;
background-color: #565656;
}
.more-style1:hover {
background-color: #696969;
}
.more-style2 {
border-radius: 5px;
background-color: #1AB394;
}
.more-style2:hover {
background-color: #18A689;
}
.more-style3 {
border-radius: 5px;
background-color: #1C84C6;
}
.more-style3:hover {
background-color: #1A7BB9;
}
</
style
>
</
head
>
<
body
>
<
div
class
=
"container"
>
<
div
class
=
"vertical-timeline"
>
<
div
class
=
"vertical-timeline-block"
>
<
div
class
=
"vertical-timeline-icon v-timeline-icon1"
>
<
i
class
=
"icon"
>
1
</
i
>
</
div
>
<
div
class
=
"vertical-timeline-content"
>
<
h2
>
时间点1
</
h2
>
<
p
class
=
"timeline-content"
>
我去吃了个午饭
</
p
>
<
p
class
=
"time-more"
>
<
span
class
=
"time"
>
2016/4/30 13:48
</
span
>
<
span
class
=
"more more-style1"
>
<
a
href
=
"#"
>
更多信息
</
a
>
</
span
>
</
p
>
</
div
>
</
div
>
<
div
class
=
"vertical-timeline-block"
>
<
div
class
=
"vertical-timeline-icon v-timeline-icon2"
>
<
i
class
=
"icon"
>
2
</
i
>
</
div
>
<
div
class
=
"vertical-timeline-content"
>
<
h2
>
时间点2
</
h2
>
<
p
class
=
"timeline-content"
>
我去吃了个午饭
</
p
>
<
p
class
=
"time-more"
>
<
span
class
=
"time"
>
2016/4/30 13:48
</
span
>
<
span
class
=
"more more-style2"
>
<
a
href
=
"#"
>
更多信息
</
a
>
</
span
>
</
p
>
</
div
>
</
div
>
<
div
class
=
"vertical-timeline-block"
>
<
div
class
=
"vertical-timeline-icon v-timeline-icon3"
>
<
i
class
=
"icon"
>
3
</
i
>
</
div
>
<
div
class
=
"vertical-timeline-content"
>
<
h2
>
时间点3
</
h2
>
<
p
class
=
"timeline-content"
>
我去吃了个午饭
</
p
>
<
p
class
=
"time-more"
>
<
span
class
=
"time"
>
2016/4/30 13:48
</
span
>
<
span
class
=
"more more-style3"
>
<
a
href
=
"#"
>
更多信息
</
a
>
</
span
>
</
p
>
</
div
>
</
div
>
<
div
class
=
"vertical-timeline-block"
>
<
div
class
=
"vertical-timeline-icon v-timeline-icon1"
>
<
i
class
=
"icon"
>
4
</
i
>
</
div
>
<
div
class
=
"vertical-timeline-content"
>
<
h2
>
时间点1
</
h2
>
<
h2
>
时间点1
</
h2
>
<
h2
>
时间点1
</
h2
>
<
h2
>
时间点1
</
h2
>
</
div
>
</
div
>
<
div
class
=
"vertical-timeline-block"
>
<
div
class
=
"vertical-timeline-icon v-timeline-icon2"
>
<
i
class
=
"icon"
>
5
</
i
>
</
div
>
<
div
class
=
"vertical-timeline-content"
>
<
h2
>
时间点1
</
h2
>
<
h2
>
时间点1
</
h2
>
<
h2
>
时间点1
</
h2
>
</
div
>
</
div
>
<
div
class
=
"vertical-timeline-block"
>
<
div
class
=
"vertical-timeline-icon v-timeline-icon3"
>
<
i
class
=
"icon"
>
6
</
i
>
</
div
>
<
div
class
=
"vertical-timeline-content"
>
<
h2
>
时间点1
</
h2
>
<
h2
>
时间点1
</
h2
>
<
h2
>
时间点1
</
h2
>
</
div
>
</
div
>
</
div
>
</
div
>
</
body
>
</
html
>
以上就是本文的全部内容,希望对大家的学习有所帮助。
更多精彩内容
其他人还在看
CSS圆角边框制作指南与实例
这篇文章主要介绍了CSS圆角边框制作指南与实例,这里突出讲解了以纯代码实现的小圆角 来消灭锯齿的方法,需要的朋友可以参考下
评论 0
收藏 0
赞 0
分享
css实现移动端图片文字水平居中
这篇文章主要为大家详细介绍了css实现移动端图片文字水平居中的方法,如何实现图片以及文字的整体水平居中,本文为大家提供两种解决办法,感兴趣的小伙伴们可以参考一下
评论 0
收藏 0
赞 0
分享
Div+CSS对HTML的table表格定位用法实例
这篇文章主要介绍了Div+CSS对HTML的table表格定位用法实例,文中讲到了CSS的定位差异问题需要的朋友可以参考下
评论 0
收藏 0
赞 0
分享
使用div+CSS将页脚始终控制在页面最下方的方法
这篇文章主要介绍了使用div+CSS将页脚始终控制在页面最下方的方法,文中介绍了设置container以及使用绝对定位两种方法来解决,需要的朋友可以参考下
评论 0
收藏 0
赞 0
分享
你值得拥有的CSS下拉菜单效果
这篇文章主要介绍了你值得拥有的多种CSS下拉菜单效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
评论 0
收藏 0
赞 0
分享
CSS利用伪元素实现导航栏斜线分隔
这篇文章主要介绍了CSS利用伪元素实现导航栏斜线分隔的相关资料
评论 0
收藏 0
赞 0
分享
纯CSS3打造属于自己的“小黄人”
这篇文章主要为大家详细介绍了纯CSS3打造属于自己的“小黄人”的相关代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
评论 0
收藏 0
赞 0
分享
浅谈各种浏览器下的CSS Hack兼容性写法
这篇文章主要介绍了各种浏览器下的CSS Hack兼容性写法,CSS Hack大致可以分为内部Hack和选择器Hack以及HTML头部引用Hack,需要的朋友可以参考下
评论 0
收藏 0
赞 0
分享
学习DIV+CSS网页布局之一列布局
学习DIV+CSS网页布局中的一列布局,本文为大家分享的是DIV+CSS网页布局教程的第一篇,感兴趣的小伙伴们可以参考一下
评论 0
收藏 0
赞 0
分享
学习DIV+CSS网页布局之两列布局
学习DIV+CSS网页布局中的两列布局,本文为大家分享的是DIV+CSS网页布局教程的第二篇,感兴趣的小伙伴们可以参考一下
评论 0
收藏 0
赞 0
分享
查看更多
网络赚钱
更多
网上怎么赚钱 网络赚钱需要注意哪些东西
站长故事实战:淘宝买关键词排名SEO服务攻略介绍
Google
浅谈一下个人站长领域的灰色地带有多么的暴利
未来5大网络销售模式选哪种好?
Papi酱首次直播的八大平台是哪些 打赏90万服不服
站长故事
更多
iPhone创造了黄牛 还是黄牛捧红了iPhone?
论诺基亚之死!
分享我经营网站的方法心得,希望大家能学到知识
站长做好以下三个步骤 长期盈利不是难事
我认识的中国第一网民高春辉
我对互联网VC的10点看法 知己知彼百战不殆