>  기사  >  웹 프론트엔드  >  jQuery를 사용하여 이미지 크기를 비례적으로 조정하는 방법: 종횡비 유지?

jQuery를 사용하여 이미지 크기를 비례적으로 조정하는 방법: 종횡비 유지?

Barbara Streisand
Barbara Streisand원래의
2024-11-05 08:03:01758검색

How to Resize Images Proportionally with jQuery: Maintaining Aspect Ratio?

jQuery를 사용하여 이미지 크기를 비례적으로 조정: 가로 세로 비율 유지

jQuery의 크기 조정 기능은 큰 이미지를 처리할 때 유용합니다. 크기를 조정하는 동안 이미지 비율을 유지하려면 다음 접근 방식을 활용하세요.

논리:

여기에 사용된 계산AspectRatioFit 함수는 원하는 최대 너비와 높이, 원래 가로 세로 비율을 효과적으로 보존합니다.

구현:

<code class="js">function calculateAspectRatioFit(srcWidth, srcHeight, maxWidth, maxHeight) {
  var ratio = Math.min(maxWidth / srcWidth, maxHeight / srcHeight);
  return { width: srcWidth*ratio, height: srcHeight*ratio };
}</code>

사용 예:

<code class="js">// Calculate and apply new dimensions to the image
var newDimensions = calculateAspectRatioFit(originalWidth, originalHeight, maxWidth, maxHeight);
$(imageSelector).width(newDimensions.width).height(newDimensions.height);</code>

이 방법을 사용하면 이미지의 원래 모양과 비율을 유지하면서 비례적으로 크기를 조정할 수 있습니다.

위 내용은 jQuery를 사용하여 이미지 크기를 비례적으로 조정하는 방법: 종횡비 유지?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.