技術(shù)頻道導(dǎo)航
HTML/CSS
.NET技術(shù)
IIS技術(shù)
PHP技術(shù)
Js/JQuery
Photoshop
Fireworks
服務(wù)器技術(shù)
操作系統(tǒng)
網(wǎng)站運營

贊助商

分類目錄

贊助商

最新文章

搜索

純css實現(xiàn)的自適應(yīng)的垂直時間線

作者:admin    時間:2021-7-25 16:15:6    瀏覽:

互聯(lián)網(wǎng)用戶喜歡使信息更容易消化的圖形。垂直時間線可以講述你公司的故事及其發(fā)展歷程。它可以揭示產(chǎn)品或服務(wù)的演變,討論特定行業(yè)的歷史,甚至可以引導(dǎo)你的客戶完成你提供服務(wù)的過程。最重要的是,你可以使用一點 CSS 就能在自己的網(wǎng)站上創(chuàng)建垂直時間線。

本文介紹的是一個可以自適應(yīng)的垂直時間線。

時間線

時間線

從 HTML 開始

你的網(wǎng)頁上的 HTML 標(biāo)記為你的時間線提供內(nèi)容,下面是示例代碼:

<!-- main timeline section -->
<section id="cd-timeline" class="cd-container cssanimations">
  <!-- single timeline event -->
  <div class="cd-timeline-block">
    <div class="cd-timeline-img cd-picture">
      <img src="event-calender.png" />
    </div>
    <div class="cd-timeline-content">
      <h2>Event 1</h2>
      <p>Event 1 Description </p>
      <span class="cd-date">Sunday, 19 June 2016</span>
    </div>
  </div>
  ....
  ....
</section>

上面的示例是時間線上的單個事件,你只需通過在代碼的第 3 行和第 8 行之間復(fù)制,相應(yīng)地修改它們并將它們粘貼到第 8 行和第 9 行之間來插入附加事件,為你想要添加到時間線的盡可能多的事件執(zhí)行此操作。

設(shè)計你的時間線

你可以使用標(biāo)準(zhǔn) HTML 標(biāo)記來設(shè)置時間線的樣式,但這非常耗時且相當(dāng)多余。最好改用 CSS 樣式。下面是一些基本 CSS 樣式的示例代碼;你必須使用單獨的代碼來設(shè)置各個元素的樣式:

#cd-timeline {
  position: relative;
  padding: 2em 0;
  margin-top: 2em;
  margin-bottom: 2em;
}
#cd-timeline::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 4px;
  background: #d7e4ed;
  left: 50%;
  margin-left: -2px;
}
.cd-container::after {
  content: '';
  display: table;
  clear: both;
}
.cd-container {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block {
  position: relative;
      margin: 4em 0;
}
.cd-timeline-content {
  margin-left: 0;
  padding: 1.6em;
  width: 42%;
  position: relative;
  background: white;
  border-radius: 0.25em;
  padding: 1em;
  box-shadow: 0 3px 0 #d7e4ed;
}
.cd-timeline-content .cd-date {
  position: absolute;
  width: 100%;
  left: 122%;
  top: 6px;
  font-size: 16px;
  font-size: 1rem;
}
.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
  left: auto;
  right: 122%;
  text-align: right;
}
.cd-timeline-block:nth-child(even) .cd-timeline-content {
  float: right;
}
.cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-img {
  width: 60px;
  height: 60px;
  left: 50%;
  margin-left: -30px;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
.cd-timeline-img {
  position: absolute;
  top: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
  background: #105a8b;
}
.cd-timeline-img img,.cd-timeline-img svg {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
  vertical-align: middle;
}
.cssanimations .cd-timeline-img.is-hidden,.cssanimations .cd-timeline-content.is-hidden {
  visibility: hidden;
}
.cssanimations .cd-timeline-img.bounce-in,.cssanimations .cd-timeline-content.bounce-in {
  visibility: visible;
  animation: cd-bounce-1 0.6s;
}
@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

execcodegetcode

你可以按照自己喜歡的任何方式設(shè)置時間線元素的樣式,使用與以下相關(guān)的相應(yīng) CSS 規(guī)則:位置、底部、寬度、高度、填充、背景、邊框樣式。

一些 Web 開發(fā)人員更喜歡隨著時間線的推移對元素進(jìn)行不同的樣式設(shè)置。例如,你可能希望為每個其他條目設(shè)置不同的樣式,以便提供一種區(qū)分它們的方法?;蛘?,你可以根據(jù)某個預(yù)先確定的類別設(shè)計不同的元素。

您可能對以下文章也感興趣

標(biāo)簽: Timeline  時間線  
x
  • 站長推薦
/* 左側(cè)顯示文章內(nèi)容目錄 */