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

提供:WikiWiki
< テンプレート:出ずる
2年5月28日 (W) 23:17時点におけるキュアラプラプ (トーク | 投稿記録)による版 (やったか!?)
ナビゲーションに移動 検索に移動
.hov {
  color: white;
}
.hovobe {
  color: black;
}
.hov:hover {
  color: black;
}
.hovobe:hover {
  animation: hbound .3s ease infinite alternate;
}
@keyframes hbound {
  0% {transform: translateY(25px);color:red}
  100% {transform: translateY(-25px);color:blue}
}
.hovrl{animation: hrl .3s linear infinite alternate;}
@keyframes hrl {
  0% {transform: translateX(25px);}
  100% {transform: translateX(-25px);}
}
.hovrl:hover{animation-play-state: paused}