> 웹 프론트엔드 > JS 튜토리얼 > jquery_jquery에서 이미지 적응형 크기를 로드하기 위한 기본 구현 코드

jquery_jquery에서 이미지 적응형 크기를 로드하기 위한 기본 구현 코드

WBOY
풀어 주다: 2016-05-16 17:24:28
원래의
787명이 탐색했습니다.

고정 크기 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" />
적응형 이미지 로딩 구현<br><script type="text/ javascript" src="../jquery.min.js"><script type="text/javascript"> <BR>function clickMe(){ <BR>var url= "../Images/1.jpg"; <BR>$("#img ").attr("src",url) <BR>$("#img").addClass("divImg"); 🎜>} <BR></script> <BR><style type= "text/css"> <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></style> <body> <BR><div class="divClass"> <BR><img id="img" > <BR></div> <BR><input type="button" id="btn" style=" width:50px;height: 30px;border:1px solid blue;" value="btn" onclick="clickMe()"/> 🎜></div> <BR></body> <BR>< ;/html></script>
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿