CSS
2
Вклад в тег
<script type="text/javascript">
$(function(){
$(window).scroll(function() {
var top = $(document).scrollTop();
var height1 = $(document).height()-$(window).height()-100;
var result = $(document).scrollTop();
if(result > height1 )
// $(".header").fadeOut(100);
if(result < height1 )
$(".header").fadeIn(300);
if (top < 100)
{
$(".header-top-inner").removeClass("header-script");
}
else
{
$(".header-top-inner").addClass("header-script");
}
});
});
</script>