Jquery首先隐藏标题并在向上滚动时显示它

时间:2016-12-13 09:55:28

标签: javascript jquery

这是一个演示页面。 https://codyhouse.co/demo/full-screen-pop-out-navigation/index.html

当屏幕位于页面顶部时如何隐藏标题,并且只会在向上滚动时显示

1 个答案:

答案 0 :(得分:0)

嗨试试......

$(window).scroll(function() {
   var _hideVal = 50; //You can change this value...
   if ($(window).scrollTop() > _hideVal) 
   {
       $('.header-holder').fadeIn();
   } 
   else
   {
       $('.header-holder').fadeOut();
   }
});