0
我想用CSS製作動畫。它應該旋轉圖像並給它一個脈衝(類似於Shazam的按鈕動畫)。 以下是我的代碼。圖像是旋轉的,但如果我添加「比例」來嘗試並使其脈動,它有一個脈衝但不旋轉。帶有脈衝的CSS旋轉動畫
.animated {
animation-duration: 5s;
-webkit-animation-duration: 5s;
animation-fill-mode: none;
-webkit-animation-fill-mode: none;
animation-timing-function: linear;
-webkit-animation-timing-function: linear;
animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
}
@keyframes rotate {
0% {
/*transform: scale(1);*/
transform-origin: center center;
transform: rotate(-360deg);
}
50% {
/*transform: scale(1.1);*/
transform-origin: center center;
}
100% {
/*transform: scale(1);*/
transform-origin: center center;
transform: rotate(0);
}
}
@-webkit-keyframes rotate {
0% {
/*-webkit-transform: scale(1);*/
-webkit-transform-origin: center center;
-webkit-transform: rotate(-360deg);
}
50% {
/*-webkit-transform: scale(1.1);*/
-webkit-transform-origin: center center;
}
100% {
/*-webkit-transform: scale(1);*/
-webkit-transform-origin: center center;
-webkit-transform: rotate(0);
}
}
.rotate {
animation-name: rotate;
-webkit-animation-name: rotate;
}
有人能幫忙嗎?
您可以加入您的HTML代碼,因爲它是給你一個解決方案很重要? – Persijn
你的代碼既沒有告訴我們你如何在'.animated'元素上設置'rotate'關鍵幀,也沒有告訴你如何添加'pulse'。 – BillyNate