$('#share').css('top', $(window).scrollTop() + ($(window).innerHeight() - parseInt($('#share').first().css('height'))) / 2 + 'px');

// 当页面发生滚动时，每隔0.2秒重置一下分享的位置

$(window).on('scroll', function () {undefined

setTimeout(function () {undefined

$('#share').css('top', $(window).scrollTop() + ($(window).innerHeight() - parseInt($('#share').first().css('height'))) / 2 + 'px');

}, 200);

});

//分享收缩效果

$('#share').hover(function () {undefined

$(this).animate({undefined

left:0

},200);

}, function () {undefined

$(this).stop().animate({undefined

left:-211

},200);

});