ToTop JQuery
В редакторе
ToTop JQuery
Brain_Script
913
2020-02-07 07:56:03
<a href="#" id="Go_Top"></a>
#totop {
position:absolute;
bottom:-28px;
right:-80px;
width:71px;
height:29px;
background-image: url("../images/gotop.png");
cursor:pointer;
}
<script type="text/javascript">
$(function() {
$(window).scroll(function() {
if($(this).scrollTop() != 0) {
$('#totop').fadeIn();
} else {
$('#totop').fadeOut();
}
});
$('#totop').click(function() {
$('body,html').animate({scrollTop:0},800);
});
});
</script>
( function($) {
$(function() {
$.fn.scrollToTop = function() {
$(this).hide().removeAttr("href");
if ($(window).scrollTop() >= "250") $(this).fadeIn("slow")
var scrollDiv = $(this);
$(window).scroll(function() {
if ($(window).scrollTop() <= "250") $(scrollDiv).fadeOut("slow")
else $(scrollDiv).fadeIn("slow")
});
$(this).click(function() {
$("html, body").animate({scrollTop: 0}, "slow")
})
}
});
$(function() {
$("#Go_Top").scrollToTop();
});
} ) ( jQuery );
Войдите для добавления комментария.