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

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

2年3月17日 (来) 17:01時点における版

div {
  position: absolute;
}
.bound {
  animation: bound .3s linear infinite alternate;
}
@keyframes bound {
  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);}
}