255 160 0 1 100
255 255 0 1 30

Codly

html <a href="#" id="Go_Top"></a> css #totop { position:absolute; bottom:-28px; right:-80px; width:71px; height:29px; background-image: url("../images/gotop.png"); cursor:pointer; } js <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 );
Яндекс.Метрика Яндекс.Метрика