0

我想知道如何以及是否有可能让多个stickyfloat 元素相互跟随。

例如,我有多篇包含大图的文章,我希望在您到达下一篇文章之前保留描述。目前所有的 stickyfloat 元素在第一个元素开始时都开始变得粘稠......这是演示http://ckdt.net/code/

我使用了这段代码:

$(function() {
    $( ".post header" ).each(function() {
        $(this).stickyfloat( { duration: 400 } );
    });
});
4

1 回答 1

1
$(function() {
    $( ".post" ).each(function() {
        $(this).find('header').stickyfloat( { duration: 400 } );
    });
});

像这样试试。如果这不起作用。请用你的代码发帖。所以我们可以看到你在那里做了什么。

于 2013-08-27T13:07:05.203 回答