footer.js 930 B

12345678910111213141516171819202122232425
  1. /*=========================================================================================
  2. File Name: footer.js
  3. Description: Template footer js.
  4. ----------------------------------------------------------------------------------------
  5. Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
  6. Author: Pixinvent
  7. Author URL: hhttp://www.themeforest.net/user/pixinvent
  8. ==========================================================================================*/
  9. //Check to see if the window is top if not then display button
  10. $(document).ready(function(){
  11. $(window).scroll(function(){
  12. if ($(this).scrollTop() > 400) {
  13. $('.scroll-top').fadeIn();
  14. } else {
  15. $('.scroll-top').fadeOut();
  16. }
  17. });
  18. //Click event to scroll to top
  19. $('.scroll-top').click(function(){
  20. $('html, body').animate({scrollTop : 0},1000);
  21. });
  22. });