淘先锋技术网

首页 1 2 3 4 5 6 7

bootstrap affix

<div class="js-affix">

sidebar

</div>

配置 css

.js-affix {
    top: 10px;
}

.js-affix.affix-bottom {
    position: absolute;
}

js

$('.js-affix').affix({
    offset: {
        top: 112,
        bottom: 434
    }
});