2014-02-17 70 views
0

我想知道是否有人知道如何對'Hello Treble'文本使用on this page的效果?它似乎是一個自動滾動文本動畫與jquery循環或類似的東西,但我不知道該怎麼做。自動滾動文字效果

如果有人有解決方案,將非常感激!

謝謝!

回答

0

您可以通過任何垂直滑塊腳本創建它。只需使用文字而不是任何圖像。

0

也許嘗試這樣的事情jquery-smooth-scroll-to-div。這是我的腳本,它在滾動後更改網址

$('a[href^="#"]').on('click',function(e){ 
     $target = $(this).attr('href'); 
     e.preventDefault(); 
     $('.active').removeClass('active'); 
     $(this).addClass('active'); 
     if($(this).attr('href') == '#') { 

      $('html, body').stop().animate({ 
      scrollTop: $('body').offset().top 
      }, 1000, function(){location.hash = $target;}); 
     } else { 
      $('html, body').stop().animate({ 
       scrollTop: $($target).offset().top + 57 - $('.main_menu').height() 
      }, 1000,function(){location.hash = $target}); 

     } 
     return false; 
    });