dNewsWrap'); var S1 = new ScrollFix(demo, { fixedClz: 'article-cont-ad-fixed', fixed: function(scrollTop, offsetTop, top) { // 广告 var wrap = this.wrap; // 内容区的最底部 var contBottomOffsetTop = cont.offset().top + cont.height(); // 固定条件 var isFixed = (scrollTop > offsetTop) && !(scrollTop + wrap.height() > contBottomOffsetTop); if (isFixed) { wrap.width(this.divFilled.width()); } return isFixed; }, onFix: function() { this.wrap.width(this.divFilled.width()); }, onUnFix: function() { this.wrap.width('auto'); } }); })(); // 右侧广告固定 (function() { var demo = $('#pl_sideAd'); var footer = $('#pl_footer'); var side = $('#pl_side'); var S1 = new ScrollFix(demo, { fixedClz: 'article-side-ad-fixed', fixed: function(scrollTop, offsetTop, top) { // 广告 var wrap = this.wrap; // 右侧内容的最底部 var sideBottomOffsetTop = side.offset().top + side.height(); // 固定条件 var isFixed = (scrollTop > sideBottomOffsetTop) && !(scrollTop + wrap.height() > footer.offset().top); return isFixed; }, onFix: function() { this.wrap.width(this.divFilled.width()); }, onUnFix: function() { this.wrap.width('auto'); } }); })(); } });