0

我有一个 jQuery 代码,当我向下滚动时,我用它来浮动一个 div

  var top = jQuery('#sider').offset().top - parseFloat(jQuery('#sider').css('marginTop').replace(/auto/, 0));
  jQuery(window).scroll(function (event) {
    // what the y position of the scroll is
    var y = jQuery(this).scrollTop();

    // whether that's below the form
    if (y >= top) {
      // if so, ad the fixed class
      jQuery('#sider').addClass('fixed');
    } else {
      // otherwise remove it
      jQuery('#sider').removeClass('fixed');
    }
  });

但我还有一个位于正文底部的 div,我想向该 div 展示我需要对这段代码进行哪些更改。

4

1 回答 1

0

这样的事情可以接受吗?

http://jsfiddle.net/Cvgdz/1/

也许你需要改变我的例子的 floatDiv 高度..

于 2012-10-09T07:34:57.170 回答