Footer.js 502 B

123456789101112131415161718192021
  1. export default class Footer {
  2. constructor(Dcat) {
  3. this.boot(Dcat)
  4. }
  5. boot(Dcat) {
  6. $(window).scroll(function(){
  7. if ($(this).scrollTop() > 400) {
  8. $('.scroll-top').fadeIn();
  9. } else {
  10. $('.scroll-top').fadeOut();
  11. }
  12. });
  13. //Click event to scroll to top
  14. $('.scroll-top').click(function(){
  15. $('html, body').animate({scrollTop : 0},1000);
  16. });
  17. }
  18. }