📜  动画类角度的变化 - Javascript代码示例

📅  最后修改于: 2022-03-11 15:01:53.430000             🧑  作者: Mango

代码示例1

  ...


.short {
  background-color: blue;
  transition: all 0.5s 0s ease-in;
}
.long {
  background-color: red;
  transition: all 1s 0s ease-in;
}