CSS3 キーフレームを使用してアニメーション付きの順序付けられていないリストを読み込もうとしています。私の問題は、アニメーションが始まる前にリストがロードされることです。そして、アニメーションの後にのみロードしたい。
ここに私がこれまでに達成したことの結果がありますhttp://jsbin.com/agelix/1/edit
HTML
<ul
class="loadingdiv" >
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
</ul>
CSS
.loadingdiv li{
-moz-animation: loading 1s alternate;
}
.loadingdiv li:nth-of-type(2) {
-moz-animation-delay: 0.4s;
}
.loadingdiv li:nth-of-type(3) {
-moz-animation-delay: 0.6s;
}
.loadingdiv li:nth-of-type(4) {
-moz-animation-delay: 0.8s;
}
.loadingdiv li:nth-of-type(5) {
-moz-animation-delay: 0.9s;
}
@-moz-keyframes loading {
0% {-moz-transform: translateZ(0); opacity:0}
}