我将此代码用于页面的固定标题:
jQuery:
$(window).bind('scroll resize', function() {
$('#header').css('top', $(this).scrollTop());
});
CSS:
#header{
position: relative;
}
我怎样才能制作动画scrollTop()
?
我将此代码用于页面的固定标题:
jQuery:
$(window).bind('scroll resize', function() {
$('#header').css('top', $(this).scrollTop());
});
CSS:
#header{
position: relative;
}
我怎样才能制作动画scrollTop()
?
$('#header').animate({'top' : $(this).scrollTop()});
$(window).bind('scroll resize', function() {
var $this = $(this);
$('#header').animate({top : $this.scrollTop()});
});
应该管用
它必须像
$('#header').scrollTop(value);
最后
$("#header").animate({ scrollTop: "value in px" })
利用 :
$('#header').animate({ scrollTop: 0 }, 'slow');