「テンプレート:出ずる/style.css」の版間の差分

提供:WikiWiki
ナビゲーションに移動 検索に移動
編集の要約なし
編集の要約なし
13行目: 13行目:
}
}
@keyframes bound {
@keyframes bound {
   0% {transform: translateY(25px);}
   0% {transform: translateY(25px);color:red}
   100% {transform: translateY(-25px);}
   100% {transform: translateY(-25px);color:blue}
}
}

2年4月1日 (来) 21:16時点における版

.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}
}