//随鼠标上下滚动

来源:互联网 发布:ubuntu 只能游客登录 编辑:程序博客网 时间:2024/04/30 06:58
//随鼠标上下滚动
$(window).bind('scroll resize',function(){ 
$('#sidebar').stop(true, true).animate({
           'top': $(document).scrollTop() + 'px'
       },500);
}).scroll().resize();