0
我在我的html文件中有三個圖像,我想一次按比例縮放。我試過放置這些延遲:-moz-animation-delay: -2s;
和animation-delay:2s;
內的ID #animation-container2
和#animation-container3
。所有圖像仍然在同一時間縮放。我做錯了什麼?CSS3動畫延遲問題
的HTML
<div id="splashPage">
<ul>
<li> <img src="images/vintage.png" alt="Vintage" id="animation-container"> <li>
<li> <img src="images/computers.png" alt="Computer" id="animation-container2"> <li>
<li> <img src="images/online.png" alt="Online" id="animation-container3" > <li>
</ul>
<img src="images/enter.gif" alt="enter" id="enterClick">
</div>
的CSS:
#animation-container {
animation: inout 2s;
animation-iteration-count: 1;
-webkit-animation: inout 3s; /* Safari & Chrome */
margin: auto;
}
@keyframes inout {
25% { transform: scale(2, 2); }
}
#animation-container2 {
-moz-animation-delay: 5s;
animation: inout 2s;
animation-iteration-count: 1;
-webkit-animation: inout 3s; /* Safari & Chrome */
margin: auto;
}
@keyframes inout {
25% { transform: scale(2, 2); }
}
#animation-container3 {
-moz-animation-delay: 10s;
animation: inout 2s;
animation-iteration-count: 1;
-webkit-animation: inout 3s; /* Safari & Chrome */
margin: auto;
}
@keyframes inout {
25% { transform: scale(2, 2); }
}
你如何觸發動畫?第一次完成時爲什麼不開始第二個動畫?等等? – jfriend00
1.您可以創建一個[http://jsfiddle.net/](http://jsfiddle.net/)? 2.你定義了三次「inout」動畫(應該足夠了)。 – Inkbug
與jsfiddle什麼是最好的方式來上傳圖像? – DMS