我的jQuery代碼:JQuery的無響應慢
var divs = $('.headerlogo, .headertext');
$(document).ready(function(){
$(window).scroll(function() {
if ($(this).scrollTop() > 100) {
divs.stop().fadeOut("fast");
$('.header').animate({height:'35px'}, 500);
}
else {
divs.stop().fadeIn("fast");
$('.header').animate({height:'350px'}, 500);
}
});
});
請在這裏找到我的全碼:http://jsfiddle.net/jJyJv/
當你當你向上滾動向下滾動的標題「縮水」的預期,但不回來像我預料的那樣回來。有時候只是標題的一小部分回來,然後幾秒鐘後它就會消失,或者有時候導航欄不見了,幾秒鐘後又回來了。它應該是即時和平穩的。
新的JQuery如此不確定爲什麼發生這種情況。任何指針都會很棒。
感謝
所有好的答案,但像CSS3的替代,謝謝。 – AnotherUser