İki CSS animasyonunun farklı hızlarda oynatılmasını nasıl sağlayabilirim ?
- Görüntü aynı anda dönüyor ve büyüyor olmalıdır.
- Dönüş her 2 saniyede bir dönecektir.
- Büyüme her 4 saniyede bir dönecektir.
Örnek Kod:
.image {
position: absolute;
top: 50%;
left: 50%;
width: 120px;
height: 120px;
margin:-60px 0 0 -60px;
-webkit-animation:spin 2s linear infinite;
-webkit-animation:scale 4s linear infinite;
}
@-webkit-keyframes spin {
100% {
transform: rotate(180deg);
}
}
@-webkit-keyframes scale {
100% {
transform: scaleX(2) scaleY(2);
}
}
http://jsfiddle.net/Ugc5g/3388/ - yalnızca bir animasyon (son bildirilen) oynatılır.