0
看着Animista.net我想寫一些自定義的CSS動畫。所以我想我會嘗試使用他們的一個例子,然後調整它以供我個人使用。CSS動畫不適用於div
.box {
width: 100px;
height: 100px;
background-color: red;
\t -webkit-animation: fade-in 1.2s steps(80, end) both;
\t -moz-animation: fade-in 1.2s steps(80, end) both;
\t animation: fade-in 1.2s steps(80, end) both;
}
<div class="box"></div>
但我不能讓動畫在所有的工作。
我在做什麼錯?