答案 0 :(得分:3)
只需查看页面来源:
$(window).scroll(function(){
if ( $('div.wrapper').width() >= 660 ) {
if ( $(this).scrollTop() > pos.top+header.height() && header.hasClass('default') ) {
header.fadeOut('fast', function(){
$(this).removeClass('default').addClass('scrolling').fadeIn('fast');
});
} else if ( $(this).scrollTop() <= pos.top+header.height() && header.hasClass('scrolling') ) {
header.fadeOut('fast', function(){
$(this).removeClass('scrolling').addClass('default').fadeIn('fast');
});
}
}
});
有一个滚动侦听器,当事件发生时 - 菜单的类在.default
和.scrolling