【发布时间】:2017-02-05 12:39:32
【问题描述】:
我的项目在滚动后有一个使用此脚本的粘性标题:
$(document).ready(function() {
$(window).scroll(function () {
//if you hard code, then use console
//.log to determine when you want the
//nav bar to stick.
console.log($(window).scrollTop())
if ($(window).scrollTop() > 385) {
$('#nav').addClass('navbar-fixed');
}
if ($(window).scrollTop() < 386) {
$('#nav').removeClass('navbar-fixed');
}
});
});
如何制作动画以使其看起来更好?
【问题讨论】:
标签: javascript jquery html css