我有背景图像的条纹,它同时具有列表项的非活动和活动图像。我想慢慢加载活动类。
一个 Span 的 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');
请帮助我如何在跨度悬停时缓慢加载活动图像