Home › Forums › JavaScript › position fixed only on scroll X › Reply To: position fixed only on scroll X
October 12, 2018 at 1:57 am
#277578
Participant
You could try if this is any smoother (doesn’t require repaints):
$(window).scroll(function() {
$('#header').css({
transform: 'translateX(' + $(this).scrollLeft() + 'px)'
});
});