jQuery를 사용하여 고정 위치 Div의 가로 스크롤
이 기사에서는 고정 위치 Div 내에서 가로 콘텐츠 스크롤 문제를 다룹니다. jQuery를 사용하여 div 위치를 지정합니다.
사용자가 scroll_fixed 클래스가 있는 div를 가지고 있고 페이지 상단에 도달하면 이를 수정하려고 합니다. 다음 CSS 스타일은 div의 스타일을 지정합니다.
.scroll_fixed { position:absolute top:210px } .scroll_fixed.fixed { position:fixed; top:0; }
jQuery 코드는 div가 맨 위에 도달할 때 고정 클래스를 추가하는 데 사용됩니다.
$(window).scroll(function (event) { // Check if the scroll position is greater than the top offset of the div if ($(this).scrollTop() >= top) { $('.scroll_fixed').addClass('fixed'); } else { $('.scroll_fixed').removeClass('fixed'); } });
이는 세로 스크롤에 적합하지만 브라우저 창이 작을 때 div 오른쪽에 있는 콘텐츠와 충돌합니다. 사용자는 div가 콘텐츠와 함께 가로로 스크롤되기를 원합니다.
/Solution:
div를 가로로 스크롤하려면 위치를 고정하고 조작해야 합니다. 상단 대신 왼쪽 속성. 다음 업데이트된 jQuery 코드는 이를 수행합니다.
var leftInit = $(".scroll_fixed").offset().left; $(window).scroll(function (event) { // Get the current scroll positions var x = 0 - $(this).scrollLeft(); var y = $(this).scrollTop(); // Fix the div when it reaches the top if (y >= top) { $('.scroll_fixed').addClass('fixed'); } else { $('.scroll_fixed').removeClass('fixed'); } // Adjust the left offset of the div based on the scroll position $(".scroll_fixed").offset({ left: x + leftInit }); });
leftInit를 사용하여 div의 왼쪽 여백을 고려합니다. http://jsfiddle.net/F7Bme/
에서 이 솔루션을 사용해 보세요.위 내용은 jQuery를 사용하여 고정 위치 Div를 콘텐츠와 함께 가로로 스크롤하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!