我想知道如何以及是否有可能让多个stickyfloat 元素相互跟随。
例如,我有多篇包含大图的文章,我希望在您到达下一篇文章之前保留描述。目前所有的 stickyfloat 元素在第一个元素开始时都开始变得粘稠......这是演示http://ckdt.net/code/
我使用了这段代码:
$(function() {
$( ".post header" ).each(function() {
$(this).stickyfloat( { duration: 400 } );
});
});