mine.js 536 B

123456789101112131415161718192021222324
  1. $(document).ready(function() {
  2. $("#toc").sticky({
  3. topSpacing:30,
  4. widthFromWrapper: false
  5. });
  6. $('#side-nav ul li:first-child a').addClass("active")
  7. $('#side-nav ul li a').on("click",function(e){
  8. e.preventDefault();
  9. var target = ($(this).attr('href')).substr(1);
  10. $('body,html').animate({
  11. scrollTop: $("#"+target).offset().top
  12. }, 1000,'swing', function(){
  13. window.location.hash = "#"+target;
  14. });
  15. $('#side-nav ul li a').removeClass("active");
  16. $(this).addClass("active");
  17. });
  18. });