开发者

Slide content with page up and down

A few small questions on this web page I am putting together.

http://dansiop.com/guyc/our-team/

I am looking to get the content that appears when you click on an image to slide with the mouse as you scroll down. Not sure if this is possible, if so can anyone help.

I have tried loo开发者_JAVA技巧king but as I am such a n00b to jquery I'm not sure what I am looking for. I found some code that used the tag slide and it was not what i wanted at all so not sure what the command would be.


You need to wrap your prof_1, prof_2, etc, in a wrapper I'm going to call this wrapper prof_wrapper

<div id="prof_wrapper"></div>
jQuery(document).ready( function(){
   var orig_t = jQuery("#prof_wrapper").offset().top;
   var mt = jQuery("#main").offset().top;
   var mh = jQuery("#main").outerHeight();

   jQuery(document).bind("scroll", function(event){
      var ph = jQuery("#prof_wrapper").outerHeight();
      var mo = (mt+mh) - jQuery(document).scrollTop();
      var t = jQuery(document).scrollTop();
      if(mo <= ph){  //Find out if the #main element's offset top plus it's height minus the scroll position is less than the prof_wrapper's height; if it is, leave the prof_wrapper at the bottom of the #main element
          jQuery("#prof_wrapper").css({'position':'absolute', 'bottom':'0px', 'top':'auto'});
      }else if(t >= orig_t){ //Otherwise, if we have scrolled past the prof_wrapper, make the prof_wrapper follow us down
        jQuery("#prof_wrapper").css({'position':'fixed', 'top':'0px', 'bottom':'auto'});
      }else{ //We are probably at the top of the page, so reset the original positioning
        jQuery("#prof_wrapper").css({'position':'relative', 'top':'0px', 'bottom':'auto'});
      }
    });
});

You need to add - position:relative to your #main element, then I think this should be pretty close. Take a look at my comment about the padding and margin on the prof_wrapper.

The positioning of absolute, assumes that #main is the first parent element to have a position assigned to it; if so, then it will use this as the positioning for the bottom.

Something like that?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜