Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 670 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 670 Bytes

jQuery.pin

对原项目的扩展以及更新.

Usage

基本用法

将某个DOM以body为容器进行固定.

$(".pinned").pin()

固定到某个容器内部

$(".pinned").pin({
    containerSelector: ".container"
})

高级用法

有时候我们需要对目标DOM设置top,或者bottom, 以针对页面中有固定顶部菜单栏等情况,可以设置以下参数:

$(".pinned").pin({
    padding: {top: 50}
})

padding 接收一个object,用来设置 topbottom

Examples

Plenty of examples Here.