gpt4 book ai didi

javascript - 仅 Css 垂直时间轴

转载 作者:太空狗 更新时间:2023-10-29 14:53:50 33 4
gpt4 key购买 nike

我正在使用 CSS 制作垂直时间轴,有人可以帮忙吗?左边部分越来越拥挤。左边部分指针圆圈与对面的圆圈重叠。尝试仅使用 css 来实现。是否有我们可以添加的任何 java 脚本以使其工作。

http://jsfiddle.net/cdtHx/

代码:

    <!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style type='text/css'>
.line {
width:930px;
margin:0 auto;
}
.line div {
width: 408px;
background-color:#ffffff;
border:solid 1px #B4BBCD;
min-height:35px;
text-align:justify;
word-wrap:break-word;
list-style:none;
}
.ci {
position:relative;
float:right;
}
.cl {
position: relative;
text-align:right;
}
.ci, .cl span {
padding:10px;
}
.line:before {
content: "";
position: absolute;
top: 0;
left: 50%;
}
.ci:before, .cl:after, .ci span:before, .cl span:after {
content: "";
position: absolute;
top: 0;
left: 0;
}
.line:before {
width: 3px;
top: -20px;
bottom: -20px;
background:#000;
}
.ci:before {
width: 5px;
height: 5px;
border: 3px solid #CCC;
border-radius: 100px;
margin: 10px 0 0 -38px;
box-shadow: 0 1px 1px rgba(0,0,0,0.2), inset 0 1px 1px rgba(0,0,0,0.1);
background: #000;
}
.ci:hover:before {
background: #090;
}
.ci span:before {
top: 12px;
left: -6px;
width: 9px;
height: 9px;
border-width: 0 0 1px 1px;
border-style: solid;
border-color: #e5e5e5;
background: #fff;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
}
/*gggggg*/
.cl:after {
width: 5px;
height: 5px;
border: 3px solid #CCC;
border-radius: 100px;
margin: 10px 0 0 445px;
background: #000;
}
.cl:hover:after {
background: #090;
}
.cl span:after {
top: 12px;
left: 404px;
width: 9px;
height: 9px;
border-width: 1px 1px 0 0;
border-style: solid;
border-color: #e5e5e5;
background: #fff;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
}

</style>
</head>

<body style="overflow:hidden;">
<div class="line">
<div class="ci"><span>one</span></div>
<div class="cl"><span>two</span></div>
<div class="ci"><span>one</span></div>
<div class="cl"><span>two</span></div>
<div class="ci"><span>one</span></div>
<div class="cl"><span>two</span></div>
</div>
</body>
</html>

最佳答案

在 Github 上查看我的示例 https://gist.github.com/OzzyCzech/6240202

它的垂直时间轴元素在两侧(左右)

enter image description here

关于javascript - 仅 Css 垂直时间轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13091116/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com