고정 크기 div에 그림을 배치하는 방법 그림이 더 작은 경우 실제 크기가 표시됩니다. 그림이 div 크기를 초과하면 그림이 자동으로 div 크기에 맞게 조정됩니다. 구현 과정의 주요 코드: 코드 복사 코드는 다음과 같습니다. .divImg{ max-height:200px; 최대 너비: 200px; width: 표현식(this.width > 200 && this.width > this.height ? 200 : auto); >height: 표현식(this.height > 200 ? 200 : auto); } 예: 코드 복사 코드는 다음과 같습니다. -equiv="Content-Type" content="text/html:charset=utf-8" /> 적응형 이미지 로딩 구현<script type="text/javascript"> <BR>function clickMe(){ <BR>var url= "../Images/1.jpg"; <BR>$("#img ").attr("src",url) <BR>$("#img").addClass("divImg"); 🎜>} <BR> <BR>.divClass { <BR>테두리: 1px 빨간색 <BR>너비: 200px; >height: 200px; <BR>} <BR>.divImg{ <BR>max -height:200px; max-width:200px; <BR>width: 표현식(this.width > 200 && this.width > .height ? 200 : auto); <BR>height: 표현식(this.height > ; 200 ? 200 : auto) <BR> 🎜> < ;/html>