redon13
11/13/2016 - 10:55 AM

Scroll button animation source: https://codepad.co/snippet/YPDXE33r

Scroll button animation

source: https://codepad.co/snippet/YPDXE33r

 $(function() {
    $('.scroll-down').click (function() {
      $('html, body').animate({scrollTop: $('section.ok').offset().top }, 'slow');
      return false;
    });
  });