「テンプレート:出ずる/style.css」の版間の差分
ナビゲーションに移動
検索に移動
編集の要約なし |
編集の要約なし |
||
15行目: | 15行目: | ||
100% {transform: translateY(-25px);color:blue} | 100% {transform: translateY(-25px);color:blue} | ||
} | } | ||
.hovrl{animation: hrl . | .hovrl{animation: hrl .5s linear infinite alternate;} | ||
@keyframes hrl { | @keyframes hrl { | ||
0% {transform: translateX(25vw);} | 0% {transform: translateX(25vw);} |
2年5月28日 (W) 23:23時点における版
.hov {
color: white;
}
.hovobe {
color: black;
}
.hov:hover {
color: black;
}
.hovobe:hover {
animation: hbound .3s ease infinite alternate;
}
@keyframes hbound {
0% {transform: translateY(25px);color:red}
100% {transform: translateY(-25px);color:blue}
}
.hovrl{animation: hrl .5s linear infinite alternate;}
@keyframes hrl {
0% {transform: translateX(25vw);}
100% {transform: translateX(-25vw);}
}
.hovrl:hover{animation-play-state: paused}