向下滑动的时候,隐藏底部导航栏(同理可隐藏头部导航栏)

$(function () {
var top = 0;
$(".wrap").on('scroll',function () {
var _top = $(this).scrollTop();
if (_top>top) {
$(".footer").css({bottom:'-.98rem'});
}else{
$(".footer").css({bottom:'0'});
}
top = _top;
});
}); 

posted @ 2017-02-27 12:54  琼琼Daring  阅读(219)  评论(0编辑  收藏  举报