リスト項目の非アクティブ イメージとアクティブ イメージの両方を持つ背景イメージにストライプを使用しています。アクティブなクラスをゆっくりとロードしたい。
1 つのスパンの CSS の例
.customer1 { width: 105px; height:68px; background:url(../img/in-customer1.png) 0px 15px no-repeat; display:block; }
.customer1_active { background:url(../img//customer1_active.png) 0px -70px no-repeat; }
HTML
<div id="customers">
<span class="customer1"></span>
<span class="customer2"></span>
<span class="customer3"></span>
<span class="customer4"></span>
</div>
これまでに試した
$(this).removeClass('default').addClass('fixed').fadeIn('slow');
スパンでのホバー時にアクティブな画像をゆっくりとロードする方法を教えてください