5
我用css3以下代碼來動畫和旋轉我的360度標誌及其工作,我如何在每次360度旋轉後2秒暫停動畫?每個css動畫後的延遲
@keyframes logo {
from {transform: rotateY(360deg);}
}
@-webkit-keyframes logo {
from {-webkit-transform: rotateY(360deg);}
}
#logo:first-of-type{
width:120px;
-webkit-animation-name: logo;
-moz-animation-name: logo;
-o-animation-name: logo;
animation-name: logo;
animation:logo 3s infinite;
-webkit-animation:logo 3s infinite;
animation-duration:2s;
-webkit-animation-duration:2s;
animation-delay:2s;
-webkit-animation-delay:2s;
}
有沒有什麼辦法來定義的延遲時間? –
動畫延遲,只能延遲動畫開始的時刻,如果你想要動畫中的步驟,那就是他們必須設置的地方:) –