affix
bootstrap affix
<p class="js-affix">
sidebar
</p>
配置 css
.js-affix {
top: 10px;
}
.js-affix.affix-bottom {
position: absolute;
}
js
$('.js-affix').affix({
offset: {
top: 112,
bottom: 434
}
});
bootstrap affix
<p class="js-affix">
sidebar
</p>
配置 css
.js-affix {
top: 10px;
}
.js-affix.affix-bottom {
position: absolute;
}
js
$('.js-affix').affix({
offset: {
top: 112,
bottom: 434
}
});
猜你喜欢