只是第一個「其他」不起作用。向下滾動時,topColor div會從原來的15高增加到150高,但當我在靠近頂部滾動時,不會縮回到15高。Animate Height - Else Not Working
$(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');
}
});
});
什麼是$(本).scrollTop()的值?使用console.log($(this).scrollTop())登錄到控制檯。 – teewuane 2013-02-27 21:29:14