Answers for "fixed scroll position on scroll js"

CSS
4

how to scroll fixed position

.fixed-content {
    top: 0;
    bottom:0;
    position:fixed;
    overflow-y:scroll;
    overflow-x:hidden;
}
Posted by: Guest on June-20-2020
0

window onscroll position fixed position in jquery

$(function() {
	var fixadent = $("#fixadent"), pos = fixadent.offset();
	$(window).scroll(function() { 
		if ($(this).scrollTop() > (pos.top + 10) && fixadent.css('position') == 'static') {
			fixadent.addClass('fixed');
		} else {
		if ($(this).scrollTop() <= pos.top && fixadent.hasClass('fixed')) { 
		fixadent.removeClass('fixed');
	}
   })
});
Posted by: Guest on May-12-2021

Browse Popular Code Answers by Language