2015-01-12 45 views
-5

您好人的Stackoverflow,使用HTML和jQuery創建相同類型的導航

我正在尋找與網站Pagekit.com上使用的相同的導航。導航必須在滾動一下後彈出。任何人都知道jQuery插件或其他任何可以爲我做的伎倆?我做了一些谷歌搜索,但找不到有用的東西。

最好的問候, 迪倫

回答

1

的關鍵是:的scrollPosition。

你想要達到的結果有點太多,無法解釋你必須採取的每一個行動。這裏是你正在尋找的一個例子:FadeIn on scroll

$(document).ready(function() { 

    /* Every time the window is scrolled ... */ 
    $(window).scroll(function(){ 

     /* Check the location of each desired element */ 
     $('.hideme').each(function(i){ 

      var bottom_of_object = $(this).position().top + $(this).outerHeight(); 
      var bottom_of_window = $(window).scrollTop() + $(window).height(); 

      /* If the object is completely visible in the window, fade it it */ 
      if(bottom_of_window > bottom_of_object){ 

       $(this).animate({'opacity':'1'},500); 

      } 

     }); 

    }); 

}); 
+0

謝謝你得到它排序先生! –

相關問題