国产沈阳熟女视频|骚视频97网站一区日本在线视频|久1社区在线视频|综合久久国外自产拍无码精品视频|亚洲欧美Tv先锋|综合五月天网址制服丝袜在线露脸|1024欧美手机视频我不卡|日本二区欧美亚洲国产|丁香五月婷婷五月|综合 另类 一区

<span id="6ki4a"></span>
  • <span id="6ki4a"></span>
  • <rt id="6ki4a"><small id="6ki4a"></small></rt>
    284292114@qq.com 中國站
    行業(yè)新聞 網站建設 網絡推廣 首頁>新聞中心>網站建設

    基于bootstrap框架寫的垂直時間軸

    時間:2025-03-09   訪問量:0

    基于bootstrap框架寫的垂直時間軸

    先是HTML代碼,循環(huán)輸出數據:

        <div class="story-box">
              {hmcms:list num=20   order='sorting asc,id asc'  page=0}              
            <div class="story-list-box wow fadeInUp" >
                  <div class="num ">[list:title]</div>
                  <div class="year fs-28">[list:title]年</div>
                  <div class="fs-16">[list:content]</div>
    
                  <div class="time-line"></div>
              </div>
              {/hmcms:list}
          </div>


    然后是CSS:

    /*******發(fā)展歷程************************/
    
     
    .story-box{
           background: url(../images/storybg.png) top center repeat-y;
        }
    
    .story-list-box{
             position: relative;
            padding: 89px 30px 63px 30px;
            box-shadow: 0 0 24px rgba(18, 35, 62, 0.05);
            background-color: #ffffff;
            z-index: 2;
            text-align: center;
            border-radius: 30px;
            margin-bottom: 30px;
            width:45%;    
        }
        .story-list-box .time-line{
             position: absolute;
             right: -110px;
             top:100px;
             width: 80px;
             height: 80px;
             overflow: hidden;
             
        }
        
    .story-list-box .time-line::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 10px;
        width: 0;
        height: 0;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-right: 40px solid #16619E;
    }
    
    
    .story-list-box:nth-child(2n) .time-line:before {
        content: "";
        position: absolute;
        top: 0px;
        left: 40px; 
        width: 0;
        height: 0;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-left: 40px solid #16619E; /* 改成 border-left 實現(xiàn)反向三角 */
    }
    
        .story-list-box:nth-child(2n){
            margin-left:55%
        }
    
        .story-list-box:nth-child(2n) .time-line{
            right:auto;
            left:-120px;
        }
    
        .story-list-box .num{
               position: absolute;
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
        color: #F4F8FF;
        font-size: 160px;
        line-height: 1;
        z-index: -1;
        font-family: 'enbold';
        }
    
        .story-list-box .year{
          line-height: 38px;
        color: #333333;
        margin-bottom: 20px;
        font-family: 'enbold';
        }


    最終效果是左右排列:

    image.png

    服務咨詢
    1對1咨詢,專業(yè)客服為您解疑答惑
    聯(lián)系銷售
    15899750475
    在線咨詢
    聯(lián)系在線客服,為您解答所有的疑問