在Safari和Chrome中跳跃div。 jQuery的/ JavaScript的

时间:2010-09-13 23:54:52

标签: javascript jquery css webkit

我有一个div #HangerLeft,css.right是通过jQuery自动生成的,根据主体宽度坐在页面的左侧。它绝对定位。

function hangerLeft() {
  var hangerPosition = (jQuery("body").innerWidth() / 2) + (990 / 2);
  jQuery("#HangerLeft").css("position","absolute").css("right", hangerPosition +"px").css("top","20px");
}

在#HangerLeft div中,我有一个没有定位的#scrollWrapper div,在#scrollWrapper里面我有一个#scrollBox。 #scrollBox是绝对定位的。

#scrollWrapper { width:130px; height:400px; border:1px solid #fff;}

#scrollBox { position: absolute; top: 100; margin-top: 25px; padding-top: 0px;}

#scrollBox.fixed { position: fixed; top: 0;}

#scrollBox坐直到你滚动。滚动浏览#scrollBox div的顶部后,javascript会添加一个类来使#scrollBox位置:固定而不是绝对。

<script>
$(function () {

var msie6 = $.browser == 'msie' && $.browser.version < 7;

if (!msie6) {
var top = $('#scrollBox').offset().top - parseFloat($('#scrollBox').css('margin-top').replace(/auto/, 0));
$(window).scroll(function (event) {
  // what the y position of the scroll is
  var y = $(this).scrollTop();

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

在Firefox和IE中,这很好用。

在#scrollBox javascript命中时,在Safari和Chrome中,#scrollBox div跳出#HangerLeft div进入页面中间并忽略#HangerLeft div的定位。

我一直在与这场斗争2周,但我不知所措。

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

好的,所以我重写了你的代码。我保持它你喜欢..我会以不同的方式设置它,但这适用于你的方法。你可以看到live version here JavaScript:

<script type="text/javascript">

function setupScrollBox(){
  // cache box element and use wrapper as your position element
  var hanger = $("#HangerLeft"),
      position = $("#wrap").offset();

  hanger.css({
    position: 'absolute',
    left: position.left - $("#scrollWrapper").outerWidth(),
    marginTop: '25px'
  });

}

$(document).ready(function(){
  // check if IE6
  var msie6 = $.browser.msie && $.browser.version < 7;

  setupScrollBox();

  // attach resize event to window 
  $(window).resize(function(){
    setupScrollBox();
  });

  // check browser
  if(!msie6){
    // attach scroll event     
    $(window).scroll(function (event) {
      // get scroll position and cache element so we only access it once
      var y = $(this).scrollTop(),
          wrap = $('#HangerLeft');

      // if scroll position is greater than 100 adjust height else do nothing
      if(y > 100)
        // you can animate the position or not, your call
        wrap.stop().animate({top: y}, 250);
        //wrap.css('top', y+'px');
    });
  }  
});
</script>

CSS:

#HangerLeft {
    top: 100px;
}

#scrollWrapper {
  width: 130px;
}

#scrollBox {
  position: relative;
  margin-top: 25px;
  padding-top: 0px;
  z-index: 10;
}

HTML:

<div id="HangerLeft">
  <div id="scrollWrapper">
    <div id="scrollBox">
      <div id="mainContainer">
        <div id="shareContainer">
          <div class="moduleShareHeader">SCROLL BOX</div>
        </div>
      </div>
    </div>
  </div>
</div>