2016-02-24 167 views
1

上滾動動畫這是我的查詢代碼:jQuery代碼不工作的

$(document).ready(function() { 

     $('.js--scroll-to-discount').click(function() { 
      $('html, body').animate({scrollTop: $('js--section-discount-opt').offset().top}, 1000); 
     }); 

}); 

這是按鈕的HTML代碼被點擊:

<a class="btn btn-full js--scroll-to-discount" href="#">I'm ready Dallas</a> 

這是部分動畫應該把你的頁面中:

<section class="discount-city js--section-discount-opt"> 

回答

1

你在你的代碼有錯誤

$(document).ready(function() { 

     $('.js--scroll-to-discount').click(function() { 
      $('html, body').animate({scrollTop: $('js--section-discount-opt').offset().top}, 1000); 
     }); 

}); 

應該

$(document).ready(function() { 

     $('.js--scroll-to-discount').click(function() { 
      $('html, body').animate({scrollTop: $('.js--section-discount-opt').offset().top}, 1000); 
     }); 

});