「テンプレート:テスト2/style.css」の版間の差分
ナビゲーションに移動
検索に移動
編集の要約なし |
編集の要約なし |
||
1行目: | 1行目: | ||
.rev1 { | .rev1 { | ||
animation: rev1 5s | animation: rev1 5s ease-out infinite alternate; | ||
} | } | ||
@keyframes rev1 { | @keyframes rev1 { |
2年4月2日 (W) 16:24時点における版
.rev1 {
animation: rev1 5s ease-out infinite alternate;
}
@keyframes rev1 {
0% {border-spacing:0;border-collapse:separate;border-radius:100px}
100% {border-radius:0px}
}
.rev2 {
animation: rev2 5s linear infinite alternate;
}
@keyframes rev2 {
0% {background-color:white}
100% {background-color:red}
}
.rev3 {
animation: rev3 5s linear infinite alternate;
}
@keyframes rev3 {
0% {color:white}
100% {color:yellow}
}