这是简单的 Jquery 代码:
$(document).ready(function() {
var activeIndex = $('#bmenul > li.totalactive').index();
$('#bluenzbarimg').css({
'marginLeft': (180 * activeIndex) + 'px'
}).show();
$('#bmenul > li').not('.totalactive').hover(function() {
var index = $(this).index();
$('#bluenzbarimg').stop().animate({
'marginLeft': (180 * index) + 'px'
}, 400);
}, function() {
$('#bluenzbarimg').stop().animate({
'marginLeft': (180 * activeIndex) + 'px'
}, 400);
});
});