我有一個簡單的圖像菜單。有一個背景圖像在懸停時消失以顯示菜單項。我正在尋找jQuery解決方案來慢慢淡出此圖像。有任何想法嗎?淡出背景圖像
HTML:
<div id="m1">
<ul class="joomla-nav">
<li>...</li>
</ul>
</div>
CSS:
#m1 {
background-image:url('../images/m1.jpg');
width:320px;
height:210px;
background-color:#1F91B7;
float:left;}
#m1:hover {
background-image:none;
background-color:transparent}
#m1:hover .joomla-nav {
display:block!important; }
#m1 .joomla-nav {
display:none!important; }
非常感謝!
完全重複http://stackoverflow.com/questions/977090/jquery-fade-in-background-image – elclanrs 2012-02-27 09:30:47
[Animate背景圖像更改與jQuery]的可能重複(http://stackoverflow.com/questions/2983957/animate-background-image-change-with-jquery) – Starx 2012-02-27 09:43:54