皆さん、こんにちは。ホバーすると背景が紫になり、テキストの色が白に変わるトランジションを現在試みています。(元は背景色がなく、テキストの色は黒です...)
しかし、それは機能していません!
私が間違っているのは何ですか!?
a:hover {
color: white;
-webkit-transition: color 1000ms linear;
-moz-transition: color 1000ms linear;
-o-transition: color 1000ms linear;
-ms-transition: color 1000ms linear;
transition: color 1000ms linear;
background-color: purple;
-webkit-transition: background-color 1000ms linear;
-moz-transition: background-color 1000ms linear;
-o-transition: background-color 1000ms linear;
-ms-transition: background-color 1000ms linear;
transition: background-color 1000ms linear;
}
だから///誰もがa:hoverではなくaに追加するように言っているので編集...
初期状態:
text-color:black;
background:none;
ホバー状態:
スムーズな移行:
text-color:white;
background:black;
これが皆さんのお役に立てば幸いです。お時間をいただきありがとうございます。