当前位置: 编程技术>WEB前端
随鼠标上下滚动的jquery代码
来源: 互联网 发布时间:2014-08-25
本文导语: 代码如下: //随鼠标上下滚动 $(window).bind('scroll resize',function(){ $('#sidebar').stop(true, true).animate({ 'top': $(document).scrollTop() + 'px' },500); }).scroll().resize();
代码如下:
//随鼠标上下滚动
$(window).bind('scroll resize',function(){
$('#sidebar').stop(true, true).animate({
'top': $(document).scrollTop() + 'px'
},500);
}).scroll().resize();