5
私は、各アイテムに、背景色の変更をホバリングし、テキストが透明になり、背景イメージを置き換えるitem1、item2などのテキストを持つメニューを作成しています。私はこのコードを使用してスタイルを出し入れしました。しかし、それは背景色ではなく画像でのみ機能します。ここでCSS3アニメーションで背景イメージをフェードインする方法
#nav li:hover {
color:transparent !important;
text-shadow: none;
background-color: rgba(255, 0, 0, .5);
-webkit-transition: all 1s ease-in;
-moz-transition: all 1s ease-in;
-o-transition: all 1s ease-in;
-ms-transition: all 1s ease-in;
transition: all 1s ease-in;
}
はオンライン版である: http://jsfiddle.net/q4uHz/