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

提供:WikiWiki
ナビゲーションに移動 検索に移動
(キュアラプラプ (トーク) による版 10150 を取り消し)
タグ: 取り消し
編集の要約なし
30行目: 30行目:
   100% {transform: translateX(-25vw);}
   100% {transform: translateX(-25vw);}
}
}
.hovot{animation-play-state: paused}
.hovrl1:active{animation-play-state: paused}
.hovrl1:active{animation-play-state: paused}
.hovrl2:active{animation-play-state: paused}
.hovrl2:active{animation-play-state: paused}
.hovrl3:active{animation-play-state: paused}
.hovrl3:active{animation-play-state: paused}
.hovot:active{animation: hovot .3s ease-in}
@keyframes hovot {
  0% {transform: translateX(0vw);}
  100% {transform: translateX(10000vw);}
}

2年5月28日 (W) 23:44時点における版

.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}
}
.hovrl1{animation: hrl1 .7s linear infinite alternate;}
@keyframes hrl1 {
  0% {transform: translateX(25vw);}
  100% {transform: translateX(-25vw);}
}
.hovrl2{animation: hrl2 .5s linear infinite alternate;}
@keyframes hrl2 {
  0% {transform: translateX(25vw);}
  100% {transform: translateX(-25vw);}
}
.hovrl3{animation: hrl3 .1s linear infinite alternate;}
@keyframes hrl3 {
  0% {transform: translateX(25vw);}
  100% {transform: translateX(-25vw);}
}
.hovot{animation-play-state: paused}
.hovrl1:active{animation-play-state: paused}
.hovrl2:active{animation-play-state: paused}
.hovrl3:active{animation-play-state: paused}
.hovot:active{animation: hovot .3s ease-in}
@keyframes hovot {
  0% {transform: translateX(0vw);}
  100% {transform: translateX(10000vw);}
}