我在屏幕右下角创建了一个按钮,在屏幕底部创建了页脚,我已经将按钮定位:固定我想在向下滚动到达页脚时将位置更改为绝对我的 CSS:
.affix-top {
position:fixed;
}
.affix {
position:absolute;
}
我的脚本:
$("#myBtn").affix({
offset: {
top: $("#footer").outerHeight(true),
bottom: null
}
});
我的页脚:
<footer class="footer" id="footer">
<div class="container">
<div class="row">
<div class="col-sm-3">
<h4 class="title">KYK Restaurant ★</h4>
<p>THE BEST Delivery Restaurants - ★★★★★</p>
</div>
</div>
</div>