| 1 |
(function($) { |
| 2 |
"use strict"; |
| 3 |
$(document).ready(function(){ |
| 4 |
var win=$(window); |
| 5 |
var totop = $('#easyel-top-to-bottom'); |
| 6 |
win.on('scroll', function() { |
| 7 |
if (win.scrollTop() > 150) { |
| 8 |
totop.fadeIn(); |
| 9 |
$('header').addClass('eel-scoll-to-top'); |
| 10 |
$('#easyel-top-to-bottom').addClass('eel-scroll-visible'); |
| 11 |
} else { |
| 12 |
totop.slideDown(400); |
| 13 |
$('header').removeClass('eel-scoll-to-top'); |
| 14 |
$('#easyel-top-to-bottom').removeClass('eel-scroll-visible'); |
| 15 |
|
| 16 |
} |
| 17 |
}); |
| 18 |
totop.on('click', function() { |
| 19 |
$("html,body").animate({ |
| 20 |
scrollTop: 0 |
| 21 |
}, 500) |
| 22 |
}); |
| 23 |
}); |
| 24 |
})(jQuery); |
| 25 |
|