我想用CSS3創建一個只顯示項目列表的動畫。讓CSS動畫顯示列表中的最後一項
我已經能夠創建一個循環遍歷列表中的每個項目的動畫,但是,我無法弄清楚動畫以顯示的列表上的最後一個項目結束的解決方案。
本質上,我希望動畫以「約翰尼好」結尾顯示。
這理應被問和回答:Stopping a CSS3 Animation on last frame
不過,我想不通,如果還是怎麼說的解決方案可以應用到我的問題。感謝您的幫助,非常感謝。
#sentence-wrapper{
width: 80%;
position: relative;
margin: 110px auto 0 auto;
font-family: serif;
padding: 10px;
}
.sentence{
margin: 0;
text-align: left;
text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}
.sentence span{
color: #444;
font-size: 200%;
font-weight: normal;
}
.words{
display: inline;
text-indent: 10px;
}
.words-1 span{
position: absolute;
opacity: 0;
overflow: hidden;
color: #6b969d;
-webkit-animation: rotateWord 12s 1 0s;
-moz-animation: rotateWord 12s 1 0s;
-o-animation: rotateWord 12s 1 0s;
-ms-animation: rotateWord 12s 1 0s;
animation: rotateWord 12s 1 0s;
}
.words-1 span:nth-child(2) {
-webkit-animation-delay: 3s;
-moz-animation-delay: 3s;
-o-animation-delay: 3s;
-ms-animation-delay: 3s;
animation-delay: 3s;
color: #6b969d;
}
.words-1 span:nth-child(3) {
-webkit-animation-delay: 6s;
-moz-animation-delay: 6s;
-o-animation-delay: 6s;
-ms-animation-delay: 6s;
animation-delay: 6s;
color: #6b969d;
}
.words-1 span:nth-child(4) {
-webkit-animation-delay: 9s;
-moz-animation-delay: 9s;
-o-animation-delay: 9s;
-ms-animation-delay: 9s;
animation-delay: 9s;
color: #6b969d;
}
@-webkit-keyframes rotateWord {
0% { opacity: 0; }
2% { opacity: 0; -webkit-transform: translateY(-30px); }
5% { opacity: 1; -webkit-transform: translateY(0px);}
17% { opacity: 1; -webkit-transform: translateY(0px); }
20% { opacity: 0; -webkit-transform: translateY(30px); }
80% { opacity: 0; }
100% { opacity: 0; }
}
<div id="sentence-wrapper">
<div class="sentence">
<span>Johnney </span>
<div class="words words-1">
<span><em>smart</em></span>
<span><em>clever</em></span>
<span><em>awesome</em></span>
<span>be good</span>
</div>
</div>
</div>
不知道,但我認爲你需要的,只有執行入口的最後一個元素不同的動畫。或者,更好的是,有不同的動畫來留下和入場,並根據需要應用它們。 –
在最後一個關鍵幀停止不會幫助你,因爲你的關鍵幀設置表明最後一個狀態是'opacity:0'(這也是你的默認狀態)。此外,最後*是好的*你打算的行爲究竟是什麼?如果*是好的*只是出現並保持不動,像其他人一樣,或者它應該向下移動,然後最後突然再次顯示單詞?如果是前者,則需要單獨爲最後一個元素編寫單獨的關鍵幀。如果是後者,那麼可以通過調整現有的關鍵幀來實現。 – Harry