Цитата Syava (
)
Нужна кнопка вверх, чтобы плавно поднималась.
В верхнюю часть сайта
Код
<!-- Кнопка вверх -->
<script language="JavaScript" type="text/javascript">
$(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();
});
</script>
<!-- /Кнопка вверх-->
В нижнюю часть сайта
Код
<a class="gotop" href='#' id='Go_Top'><img src="http://mserega.olexandrivka.info/images/footer/gotop.png" style="cursor: pointer;" alt="Вверх"></a>