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