mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
18 lines
392 B
JavaScript
18 lines
392 B
JavaScript
jQuery(document).ready(function(){
|
|
jQuery("#scrollup").hide();
|
|
jQuery(function () {
|
|
jQuery(window).scroll(function () {
|
|
if (jQuery(this).scrollTop() > 100) {
|
|
jQuery('#scrollup').fadeIn();
|
|
} else {
|
|
jQuery('#scrollup').fadeOut();
|
|
}
|
|
});
|
|
jQuery('#scrollup').click(function () {
|
|
jQuery('body,html').animate({
|
|
scrollTop: 0
|
|
}, 500);
|
|
return false;
|
|
});
|
|
});
|
|
}); |