1

我想在定义的页面区域内滑动一个包含内容的 DIV;在一个长的垂直 1 页网站内。

我用 6 个 DIV 块设置它;

块 5 我有一个包含在 DIV 中的 CSS3 / jQuery 动画——我想用jQuery滑出页面(从左侧或右侧)。

我正在考虑从定义的锚点确定滑动点;放在我希望DIV滑入的区域的标记内。

我怎么能写这个;

..类似于 -- if 锚标签;滑入?

就像是;

  slideLeftHide: function() {
    return this.each(function() {
      $(this).hide('slide', {direction: 'left'}, 1000);
    });
4

1 回答 1

2

http://jsfiddle.net/SZ8uH/2/

尝试这样的事情:

var animInTriggeredAt = $("a#slidein").offset().top; //show when the anchor comes on stage
var animOutTriggeredAt = animInTriggeredAt + $(window).height(); //hide when it leaves the stage
var animActive = false;

// handle scroll event
$(window).scroll(checkScrollCues);

function checkScrollCues(){
    var scrollY = $(window).scrollTop();
    if (scrollY > animInTriggeredAt && scrollY < animOutTriggeredAt && !animActive){
        animActive = true;
        $("#myAnimatedDiv").show(); //put whatever animation code you want in here
    } else if ((scrollY < animInTriggeredAt || scrollY > animOutTriggeredAt) && animActive){
         animActive = false;
        $("#myAnimatedDiv").hide(); //put whatever animation code you want in here
    }
}
于 2012-12-13T20:51:37.643 回答