You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
538 B
25 lines
538 B
/* global woodmart_settings */
|
|
(function($) {
|
|
woodmartThemeModule.scrollTop = function() {
|
|
var $scrollTop = $('.scrollToTop');
|
|
|
|
woodmartThemeModule.$window.on('scroll', function() {
|
|
if ($(this).scrollTop() > 100) {
|
|
$scrollTop.addClass('button-show');
|
|
} else {
|
|
$scrollTop.removeClass('button-show');
|
|
}
|
|
});
|
|
|
|
$scrollTop.on('click', function() {
|
|
$('html, body').animate({
|
|
scrollTop: 0
|
|
}, 800);
|
|
return false;
|
|
});
|
|
};
|
|
|
|
$(document).ready(function() {
|
|
woodmartThemeModule.scrollTop();
|
|
});
|
|
})(jQuery);
|
|
|