テンプレート:テスト2/style.css

提供:WikiWiki
ナビゲーションに移動 検索に移動
.rev1 {
  animation: rev1 5s linear infinite alternate;
}
@keyframes rev1 {
  0% {border-spacing:0;border-collapse:separate;border-radius:100px}
  100% {border-radius:0px}
}
.rev2 {
  animation: rev2 5s linear infinite alternate;
}
@keyframes rev2 {
  0% {background-color:white}
  100% {background-color:red}
}
.rev3 {
  animation: rev3 5s linear infinite alternate;
}
@keyframes rev3 {
  0% {color:white}
  100% {color:yellow}
}