jquery.backtotop.js 610 B

123456789101112131415161718192021
  1. /*
  2. Template Name: Pobabini
  3. Author: <a href="http://www.os-templates.com/">OS Templates</a>
  4. Author URI: http://www.os-templates.com/
  5. Licence: Free to use under our free template licence terms
  6. Licence URI: http://www.os-templates.com/template-terms
  7. File: Back to Top JS
  8. */
  9. jQuery("#backtotop").click(function () {
  10. jQuery("body,html").animate({
  11. scrollTop: 0
  12. }, 600);
  13. });
  14. jQuery(window).scroll(function () {
  15. if (jQuery(window).scrollTop() > 150) {
  16. jQuery("#backtotop").addClass("visible");
  17. } else {
  18. jQuery("#backtotop").removeClass("visible");
  19. }
  20. });