我正在Wordpress中构建一个博客页面并添加一个指向当前帖子的侧边栏。我想用jQuery填充当前帖子的日期。这只是一个想法,所以我没有任何代码。但它的功能如下:
当您向下滚动页面时,日期(或其他信息)将根据您所在的div而改变。它还必须在博客环境中工作,这意味着每个div可能有不同的高度。
有什么想法吗?
答案 0 :(得分:14)
我不知道你想从哪里获取日期,所以,只是一个例子.. http://jsfiddle.net/Nsubt/
$(window).on("scroll resize", function(){
var pos=$('#date').offset();
$('.post').each(function(){
if(pos.top >= $(this).offset().top &&
pos.top < $(this).next().offset().top)
{
// any way you want to get the date
$('#date').html($(this).html());
return; //break the loop
}
});
});
$(document).ready(function(){
$(window).trigger('scroll'); // init the value
});
右侧的Div可以有固定的位置,或者您可以在使用scroll
和resize
事件的区块中更新其绝对位置。