「テンプレート:動き/style.css」の版間の差分

提供:WikiWiki
ナビゲーションに移動 検索に移動
編集の要約なし
編集の要約なし
1行目: 1行目:
div {
  position: absolute;
}
.bound {
.bound {
   animation: bound .3s ease infinite alternate;
   animation: bound .3s ease infinite alternate;

2年4月2日 (W) 13:33時点における版

.bound {
  animation: bound .3s ease infinite alternate;
}
@keyframes bound {
  0% {transform: translateY(25px);}
  100% {transform: translateY(-25px);}
}
.updown {
  animation: updown .3s linear infinite alternate;
}
@keyframes updown {
  0% {transform: translateY(25px);}
  100% {transform: translateY(-25px);}
}
.spin1 {
  animation: spin1 .9s linear infinite normal;
}
@keyframes spin1 {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
.spin2 {
  animation: spin2 .9s linear infinite normal;
}
@keyframes spin2 {
  0% {transform: rotate(360deg);}
  100% {transform: rotate(0deg);}
}
.spin3 {
  animation: spin1 .18s linear infinite normal;
}
.spin4 {
  animation: spin2 .18s linear infinite normal;
}