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