У меня есть вот такой код
.test1{
position: fixed;
overflow: hidden;
width: 100px;
height: 100px;
}
.test2{
width: 100%;
height: 100%;
position: -fixed;
}
<div class="test1">
<div class="test2"></div>
</div>
$(function(){
var CurrentScroll = 0;
$(window).scroll(function(event){
var NextScroll = $(this).scrollTop();
if (NextScroll > CurrentScroll){
alert('down');
var topp = parseInt($('.test2').css("top"));
$('.test2').css('top', topp-1);
});
}
else {
alert('top');
var topi = parseInt($('.test2').css("top"));
$('.test2').css('top', topi+1);
});
}
CurrentScroll = NextScroll; //Updates current scroll position
});
});
и мне необходимо что бы при скролинге вниз test2 оставался на месте а test1 двигался вниз