0
在這個小提琴中:https://jsfiddle.net/3e5sqe36/1 我想讓一個固定的位置div使用動畫,但是將動畫應用到div會將其從視口的頂部推開。我該如何製作一個固定的CSS動畫
我發現這個問題:How do I use CSS animations to slide a fixed position element from the bottom of the page to the top? 我嘗試將「左下角」應用到動畫的起始關鍵幀,但這似乎也不適用於我。
這裏是CSS代碼:
.animated {
-webkit-animation-name: pulse;
-webkit-animation-duration: .1s;
-webkit-animation-iteration-count: inifinite;
animation-name: pulse;
animation-duration: .1s;
animation-iteration-count: infinite;
}
@-webkit-keyframes pulse {
0% { -webkit-transform: scale(1); }
50% { -webkit-transform: scale(1.1); }
100% { -webkit-transform: scale(1); }
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
檢查[這](https://jsfiddle.net/3e5sqe36/3 /) – Alex
謝謝!我不認爲在那裏添加線條,這有很大幫助。 – pequaad