当前位置: 首页 > 知识库问答 >
问题:

引导时间线图片对齐

黄君博
2023-03-14

我想在网站上集成一个时间线,并使用以下代码作为时间线的基础:http://bootsnipp.com/snippets/featured/timeline-responsive

我通过添加图片进一步扩展了代码片段。一开始,两张图片(第一排)一切都很好,三张也很好(在前两张下面),但一出现第四张,后者突然出现在下面一排,而不是第二排下面的第三排。

HTML:

<head>
 <meta charset="utf-8">
 <meta http-equiv="X-UA-Compatible" content="IE=edge">
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <title></title>
 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
 <link rel="stylesheet" href="css/styles.css">
</head>


<li class="timeline-inverted">
            <div class="timeline-panel">
                <div class="timeline-heading">
                    <h4 class="timeline-title">1981-1990</h4>
                </div>
                <div class="timeline-body">
                    <p>Some text</p>
                    <p>Some more text</p>
                </div>
            </div><div class="timeline-picture-body">
                <img class="timeline-images-left padding-bottom" src="http://placehold.it/250x250">
                <img class="timeline-images-left padding-bottom" src="http://placehold.it/250x250">
                <img class="timeline-images-left align" src="http://placehold.it/250x250">
                <img class="timeline-images-left align" src="http://placehold.it/250x250">
            </div>
</li>
/*body*/
body {
 background-color: white;
}
.panel {
 background-color: white;
 color: black;
 border-radius: 0;
 text-align: justify;
 font-size: 1.3em;
}
.panel-extra {
 padding: 10px 0;
 margin-top: 25px;
 background-color: lightgrey;
 border-radius: 0;
 text-align: center;
 font-size: 1.3em;
 font-weight: bold;
}
.box {
 padding-top: 30px;
 padding-bottom: 30px;
 border-bottom-width: 3px;
 border-bottom-color: lightgrey;
 border-bottom-style: solid; 
}
/*Timeline*/

.timeline {
list-style: none;
padding: 20px 0 20px;
position: relative;
}

.timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #eeeeee;
    left: 50%;
    margin-left: -1.5px;
}

.timeline > li {
    margin-bottom: 20px;
    position: relative;
}
.timeline > li:before,
.timeline > li:after {
    content: " ";
    display: table;
    }

.timeline > li:after {
    clear: both;
    }

.timeline > li > .timeline-panel {
    width: 46%;
    float: left;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    padding: 20px;
    position: relative;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
    margin-bottom: 40px;
}
.timeline > li.timeline-inverted > .timeline-panel {
        float: right;
    }

    .timeline > li.timeline-inverted > .timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto;
    }

    .timeline > li.timeline-inverted > .timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto;
    }
.timeline > li.timeline-inverted > .timeline-picture-body: before {
        position: absolute;
        top: 26px;
        right: -15px;
        display: inline-block;
        border-top: 15px solid transparent;
        border-left: 15px solid #ccc;
        border-right: 0 solid #ccc;
        border-bottom: 15px solid transparent;
        content: " ";
    }
    .timeline > li.timeline-inverted > .timeline-picture-body: after {
        position: absolute;
        top: 27px;
        right: -14px;
        display: inline-block;
        border-top: 14px solid transparent;
        border-left: 14px solid #fff;
        border-right: 0 solid #fff;
        border-bottom: 14px solid transparent;
        content: " ";
    }
    .timeline > li.timeline-inverted > .timeline-picture-body {
        float: left;
    }
.timeline-title {
 margin-top: 0;
 color: inherit;
}

.timeline-body > p,
.timeline-body > ul {
 margin-bottom: 0;
}

.timeline-body > p + p {
 margin-top: 5px;
}
.timeline-images-right {
 display: inline-block;
 vertical-align: top;
 width: 40%;
 float: left;
 padding: 0 10px;
}
.timeline-images-left {
 display: inline-block;
 vertical-align: top;
 width: 40%;
 float: right;
 padding: 0 10px;
}
.padding-bottom {
 padding-bottom: 10px;
}
.align {
 display: block;
}

/*fonts*/
h1 {
 text-align: center;
 font-size: 3em;
 color: black;
 padding-top: 220px;
 margin-top: 0;
}
.box h1 {
 text-align: center;
 font-size: 3em;
 color: black;
 padding-top: 30px;
 margin-top: 0;
}
h2{
 text-align: center;
 font-size: 2.3em;
 color: black;
}
p {
 text-align: justify;
 font-size: 1.3em;
}

如果你需要进一步的代码部分,请告诉我,我很乐意上传他们以及。

我很感激任何帮助,提前谢谢!

共有1个答案

闾丘德宇
2023-03-14

它不是完美的解决方案,因为它不针对最初的浏览器问题,但这样图片的行为不再奇怪:

我在行之间添加了容器。它必须是一个引导程序容器,我尝试的所有其他元素和类都不起作用。

<div class="timeline-picture-body">
                        <img class="timeline-images-left padding-bottom" src="img/tl7.jpg">
                        <img class="timeline-images-left padding-bottom" src="img/tl8.jpg">
                    <div class="container"></div>
                        <img class="timeline-images-left align" src="img/tl9.jpg">
                        <img class="timeline-images-left align" src="img/tl10.jpg">
                </div>
 类似资料:
  • 在bootstrap中有没有一种方法可以: 所以我希望文本和图像在页面的中心。右边是文本,右边对齐,左边是图像,我试过用divs,然后用table没有成功。 我试过:

  • 我使用Bootstrap datetimepickerhttps://eonasdan.github.io/bootstrap-datetimepicker/ 正如文档中提到的,我能够使用下面的代码成功地更改向上和向下箭头。 我可以知道如何更改日历的左右图标吗?为了便于理解,我在下图中突出显示了要更改的图标。 任何帮助将高度赞赏。

  • 我使用的是bootstrap3。x、 添加了datetimepicker 4.17,datetimepicker工作正常,但没有显示时钟图标和箭头图标。 https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.47/js/bootstrap-datetimepicker.min.js https://cdnjs.cl

  • 我正在尝试实现这里介绍的日期时间选择器https://eonasdan.github.io/bootstrap-datetimepicker/#minimum-安装程序,我已将文件文件下载到目录和。但当点击图标时,日历不会弹出。

  • 本文向大家介绍Echarts地图添加引导线效果(labelLine),包括了Echarts地图添加引导线效果(labelLine)的使用技巧和注意事项,需要的朋友参考一下 最近有粉丝问我能不能出个案例:地图上的地区文字,或其他标示类的图层,因为区块面积相对太小,想放在地图之外,通过labelLine连接到对应的区块上。今天就分享一个类似简单的案例,铺设散点形式铺设label,部分地区用线连接,地图

  • 当线程停止时,关闭Spring引导的正确方法是什么?我不应该使用Spring中的吗? 谢谢!