css3怎么實(shí)現(xiàn)多個(gè)元素依次顯示效果-創(chuàng)新互聯(lián)

這篇文章主要介紹了css3怎么實(shí)現(xiàn)多個(gè)元素依次顯示效果,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

我們提供的服務(wù)有:網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、連云ssl等。為超過(guò)千家企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的連云網(wǎng)站制作公司

css3怎么實(shí)現(xiàn)多個(gè)元素依次顯示效果

如上圖所示,在許多的活動(dòng)宣傳html5中會(huì)經(jīng)常需要用到這樣的一個(gè)動(dòng)畫(huà)效果。特別是快到年底了,也許有同學(xué)正在為了公司的活動(dòng)頁(yè)面而忙碌,get到這樣一個(gè)小技能說(shuō)不定剛好對(duì)你有幫助哦。

在css3中,我們使用animation與keyframes結(jié)合,可以給元素添加各種各樣的動(dòng)畫(huà)效果。具體的動(dòng)畫(huà),在keyframes中定義,在animation中使用。例如可以定義一個(gè)從上飛入的動(dòng)畫(huà)效果。

@keyframes topIn {
  from { transform: translateY(-50px) }
  to { transform: translateY(0px) }
}

并在目標(biāo)元素中通過(guò)animation來(lái)使用動(dòng)畫(huà)。

<div class="target topIn"></div>
.topIn {
  animation: topIn 1s ease;
}

這樣,當(dāng)元素第一次渲染進(jìn)入DOM時(shí),就會(huì)有一個(gè)從上到下的位移動(dòng)畫(huà)效果。當(dāng)然,這種效果并不是我們想要的。往往我們還在在動(dòng)畫(huà)上加上一個(gè)透明度從0到1的漸變。

@keyframes topIn {
  from { 
    transform: translateY(-50px);
    opacity: 0; 
  }
  to { 
    transform: translateY(0px);
    opacity: 1; 
  }
}

我們還希望能夠控制元素的顯示時(shí)機(jī)應(yīng)該怎么辦?簡(jiǎn)單一點(diǎn)的辦法就是在需要?jiǎng)赢?huà)效果展示時(shí),才給目標(biāo)元素添加控制動(dòng)畫(huà)的class樣式。

btn.addEventListener('click', function() {
  document.querySelector('.target').classList.add('topIn');
}, !1);

但是這樣做有一個(gè)問(wèn)題。我相信實(shí)踐過(guò)的朋友都已經(jīng)發(fā)現(xiàn)過(guò)的。我們期望元素在入場(chǎng)之前,是處于看不見(jiàn)的狀態(tài)。但是僅僅只是上面的做法,動(dòng)畫(huà)開(kāi)始前元素是能夠被看見(jiàn)的。那么應(yīng)該怎么辦?

我們可以很簡(jiǎn)單的想到,給元素添加 display: none 或者 visibility: hidden 。但是由于 display: none 之后,元素是不占位的。因此如果這樣的話,會(huì)導(dǎo)致頁(yè)面布局出現(xiàn)混亂。所以我們?cè)陂_(kāi)始之前,給元素添加一個(gè)新的class。

.aninode {
  visibility: hidden;
}

并且添加一個(gè)新的class讓元素顯示出來(lái)。

.animated .aninode {
  visibility: visible;
}

控制動(dòng)畫(huà)效果的class也在css上進(jìn)行一些調(diào)整。

.animated .topIn {
  animation: topIn 1s ease;
}

這樣做的好處是,我們只需要在class中添加一個(gè) animated ,就能夠達(dá)到我們的效果。實(shí)例demo完整代碼如下:

<div class="container">
  <div class="target aninode leftIn"></div>
  <button class="btn show">show</button>
  <button class="btn hide">hide</button>
</div>
.container {
  width: 100px;
  margin: 0 auto;
}
.aninode {
  visibility: hidden;
}
.animated .aninode {
  visibility: visible;
}
.target {
  width: 100px;
  height: 100px;
  background: orange;
  border-radius: 4px;
  margin: 20px 0;
}
.animated .topIn {
  animation: topIn 1s ease;
}
.animated .leftIn {
  animation: leftIn 1s ease;
}
.btn {
  width: 100px;
  height: 30px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.1s;
}
.btn:active {
  border: none;
  background: orange;
  color: #fff;
}
@keyframes topIn {
  from { 
    transform: translateY(-50px);
    opacity: 0; 
  }
  to { 
    transform: translateY(0px);
    opacity: 1; 
  }
}
@keyframes leftIn {
  from { 
    transform: translateX(-50px);
    opacity: 0; 
  }
  to { 
    transform: translateX(0px);
    opacity: 1; 
  }
}
var show = document.querySelector('.show');
var hide = document.querySelector('.hide');
var container = document.querySelector('.container');
show.addEventListener('click', function() {
  container.classList.add('animated');
}, !1);
hide.addEventListener('click', function() {
  container.classList.remove('animated');
}, !1);

Demo顯示如下:

See the Pen <a href='https://codepen.io/yangbo5207/pen/NXKrPg/'>NXKrPg</a> by Ormie (<a href='https://codepen.io/yangbo5207'>@yangbo5207</a>) on <a href='https://codepen.io'>CodePen</a>.

codepen demo 地址

但是這樣離我們想要的效果好像還差一點(diǎn)點(diǎn)。繼續(xù)思考。首先想要后面的元素比前一個(gè)元素晚一點(diǎn)出現(xiàn),那么肯定是要控制延遲時(shí)間,我們就必須有許多設(shè)置延遲時(shí)間的class。

.delay200 {
    animation-delay: 200ms;
    animation-fill-mode: backwards!important;
}
.delay400 {
    animation-delay: 400ms;
    animation-fill-mode: backwards!important;
}
.delay600 {
    animation-delay: 600ms;
    animation-fill-mode: backwards!important;
}
.delay800 {
    animation-delay: 800ms;
    animation-fill-mode: backwards!important;
}

animation-fill-mode: backwards!important; 的目的是為了元素在出現(xiàn)之前,保持透明度為0的狀態(tài)。防止當(dāng)添加 animated 之后元素直接出現(xiàn)了。

加 !important 是為了防止在新的class中使用animation簡(jiǎn)寫(xiě)時(shí)對(duì) animation-fill-mode 的屬性進(jìn)行覆蓋改寫(xiě)。如果此處不寫(xiě) !important 的話,那么在 topIn 這樣的動(dòng)畫(huà)class中就不能使用簡(jiǎn)寫(xiě)形式。

這樣之后,我們只需要在css中添加上上述代碼,并對(duì)html做一些改動(dòng),就能夠?qū)崿F(xiàn)我們想要的效果了。

See the Pen <a href='https://codepen.io/yangbo5207/pen/mpbEEE/'>mpbEEE</a> by Ormie (<a href='https://codepen.io/yangbo5207'>@yangbo5207</a>) on <a href='https://codepen.io'>CodePen</a>.

codepen demo 地址

完整代碼如下:

<div class="container">
  <div class="targets aninode">
      <div class="item leftIn">春曉</div>
      <div class="item leftIn delay200">春眠不覺(jué)曉</div>
      <div class="item leftIn delay400">處處蚊子咬</div>
      <div class="item leftIn delay600">夜來(lái)風(fēng)雨聲</div>
      <div class="item leftIn delay800"><此處請(qǐng)留下你們的才華></div>
  </div>
  <button class="btn show">show</button>
  <button class="btn hide">hide</button>
</div>
.container {
  width: 200px;
  margin: 0 auto;
}
.aninode {
  visibility: hidden;
}
.animated .aninode {
  visibility: visible;
}
.targets {
  margin: 20px 0;
}
.targets .item {
    border: 1px solid #ccc;
    margin: 10px 0;
    line-height: 2;
    padding: 2px 6px;
    border-radius: 4px;
}
.animated .topIn {
  animation: topIn 1s ease;
}
.animated .leftIn {
  animation-name: leftIn;
  animation-duration: 1s;
}
.btn {
  width: 100px;
  height: 30px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.1s;
}
.btn:active {
  border: none;
  background: orange;
  color: #fff;
}
@keyframes topIn {
  from { transform: translateY(-50px) }
  to { transform: translateY(0px) }
}
@keyframes leftIn {
  from { 
    transform: translateX(-50px);
    opacity: 0; 
  }
  to { 
    transform: translateX(0px);
    opacity: 1; 
  }
}
.delay200 {
    animation-delay: 200ms;
    animation-fill-mode: backwards!important;
}
.delay400 {
    animation-delay: 400ms;
    animation-fill-mode: backwards!important;
}
.delay600 {
    animation-delay: 600ms;
    animation-fill-mode: backwards!important;
}
.delay800 {
    animation-delay: 800ms;
    animation-fill-mode: backwards!important;
}
var show = document.querySelector('.show');
var hide = document.querySelector('.hide');
var container = document.querySelector('.container');
show.addEventListener('click', function() {
  container.classList.add('animated');
}, !1);
hide.addEventListener('click', function() {
  container.classList.remove('animated');
}, !1);

我們發(fā)現(xiàn)js的邏輯并沒(méi)有發(fā)生任何改變。仍然僅僅只是在合適的位置添加/刪除animated。

彩蛋:

在實(shí)踐中我們還會(huì)遇到一個(gè)比較麻煩的事兒。就是延遲class的編寫(xiě)。我們可能并不知道會(huì)使用到那些時(shí)差,有多少個(gè)元素會(huì)使用到,如果都用手來(lái)寫(xiě)的話,重復(fù)工作確實(shí)太過(guò)麻煩。因此我們可以使用js動(dòng)態(tài)插入。代碼如下:

const styleSheet = getSheet();
var delay = 100;
while (delay < 10000) {
    styleSheet.insertRule(`.animated .delay${delay}{ animation-delay: ${delay}ms; animation-fill-mode: backwards; }`, styleSheet.cssRules.length);
    delay += delay < 3000 ? 100 : 1000;
}
function getSheet() {
    var sheets = document.styleSheets;
    var len = sheets.length;
    for(var i = 0; i <= len; i++) {
        var sheet = sheets.item(i);
        try {
            if (sheet.cssRules) {
                return sheet;
            }
        } catch(e) {} 
    }
    var style = document.createElement('style');
    style.type = "text/css";
    document.getElementsByTagName('head')[0].appendChild(style);
    return style.sheet;
}

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“css3怎么實(shí)現(xiàn)多個(gè)元素依次顯示效果”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,,關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!

網(wǎng)站名稱:css3怎么實(shí)現(xiàn)多個(gè)元素依次顯示效果-創(chuàng)新互聯(lián)
網(wǎng)站鏈接:http://bm7419.com/article4/disoie.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、小程序開(kāi)發(fā)App設(shè)計(jì)、用戶體驗(yàn)、定制開(kāi)發(fā)、關(guān)鍵詞優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

手機(jī)網(wǎng)站建設(shè)