I am using background-attachment:scroll
for two divs, Scrolling works perfectly but only the issue is background image jerks while scrolling. I am attaching my CSS below:
.slider_area {
width:100%;
height:600px;
background:#9ad5e3 url(../images/slide_1.jpg) center top no-repeat;
background-attachment:scroll;
-webkit-background-attachment:scroll;
background-size:cover;
}
.cont_1_wrapper {
width:100%;
height:auto;
padding:100px 0;
background:url(../images/cont_1_bg_b.jpg) repeat;
background-attachment:scroll;
}
<script>
$(window).scroll(function() {
var scrolledY = $(window).scrollTop();
$('.scroll').css('background-position', 'center ' + ((scrolledY)) + 'px');
});
</script>
JSFIDDLE LINK : https://jsfiddle.net/ansarmon/apxrztat/1/
Can someone help me with this?