只是第一个“其他”不起作用。向下滚动时,topColor div 将从原来的 15 高扩展到 150 高,但当我在顶部附近滚动时不会收缩回 15 高。
$(document).ready(function () {
$(window).scroll(function () {
if ($(this).scrollTop() > 20) {
$('#topColor').animate({
height: "150px"
});
} else {
$('#topColor').animate({
height: "15px"
});
}
if ($(this).scrollTop() > 300) {
$("#fixedMenuBar").fadeIn('slow', 'linear');
} else {
$("#fixedMenuBar").fadeOut('fast', 'linear');
}
});
});