テンプレート:出ずる/style.css

提供:WikiWiki
ナビゲーションに移動 検索に移動
.hov {
  color: white;
}
.hovobe {
  color: black;
}
.hov:hover {
  color: black;
}
.hovobe:hover {
  animation: bound .3s ease infinite alternate;
  color: red;
}
@keyframes bound {
  0% {transform: translateY(25px);color:red}
  100% {transform: translateY(-25px);color:blue}
}