有没有人有使用优秀的 Sticky Kit jQuery 插件的经验? http://leafo.net/sticky-kit/
我无法弄清楚如何使用'offset_top'选项?选项的文档有点模糊,示例如下:
$("#sticky_item").stick_in_parent(options)
我想我必须写下这样的东西:
$("#sticky_item").stick_in_parent(offset_top)
但是如何指定我想要偏移 #sticky_item 的像素数?
非常感谢任何帮助!
答案 0 :(得分:34)
要向#sticky_item添加20像素的偏移,请执行以下操作:
$("#primary").stick_in_parent({offset_top: 20});