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

贊助商

分類目錄

贊助商

最新文章

搜索

包含動畫樣式的css時(shí)間線(timeline)

作者:admin    時(shí)間:2022-1-19 21:53:41    瀏覽:

前面介紹過幾款css timeline時(shí)間線樣式,可參考:

本文介紹的CSS timeline時(shí)間線與前面的不同之處是,可為任何節(jié)點(diǎn)設(shè)計(jì)一個(gè)動畫樣式,以凸顯該節(jié)點(diǎn)的標(biāo)題和內(nèi)容。如圖:

 

demodownload

HTML

<div class="v-timeline" aria-live="polite">
  <ol class="v-timeline--items">
    <li class="v-timeline--item">
      <span aria-hidden="true" class="v-timeline--bullet -pulsar">
        <svg viewBox="0 0 16 16" focusable="false"><circle stroke="none" cx="8" cy="8" r="8"></circle></svg>
      </span>
      <h2><a href="#"><span class="v-timeline--accent">當(dāng)前時(shí)間線: </span>標(biāo)題文字</a></h2>
      <p>內(nèi)容</p>
    </li>
    <li class="v-timeline--item">
      <span aria-hidden="true" class="v-timeline--bullet">
        <svg viewBox="0 0 16 16" focusable="false"><circle stroke="none" cx="8" cy="8" r="8"></circle></svg>
      </span>
      <h3><a href="#">標(biāo)題二</a></h3>
    </li>
    <li class="v-timeline--item">
      <span aria-hidden="true" class="v-timeline--bullet">
        <svg viewBox="0 0 16 16" focusable="false"><circle stroke="none" cx="8" cy="8" r="8"></circle></svg>
      </span>
      <h3><a href="#">標(biāo)題三</a></h3>
    </li>
  </ol>
</div>

<li class="v-timeline--item"></li> 為一個(gè)節(jié)點(diǎn)盒子。

h2 標(biāo)簽的標(biāo)題為動畫節(jié)點(diǎn),h3 標(biāo)簽的標(biāo)題為普通標(biāo)題。

<svg></svg> 標(biāo)簽是節(jié)點(diǎn)圓點(diǎn),可修改代碼更改其大小及位置,此外還需結(jié)合使用一個(gè)css屬性v-timeline--bullet。

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

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