[제나플러스] 웹반응형에 따른 이미지 자동 리사이즈 처리하기
페이지 정보
본문
<script>
$( document ).ready( function() {
$("#content img").attr({"width":"", "height":""}).css({"max-width": "100%"});
$("#content img").css({"width":"", "height":"", "max-width": "100%"});
} );
</script>
<
script
>
$(function() {
$("#post_content img, .resizablebox").each(function() {
var oImgWidth = $(this).width();
var oImgHeight = $(this).height();
$(this).css({
'max-width':oImgWidth+'px',
'max-height':oImgHeight+'px',
'width':'100%',
'height':'100%'
});
});
});
</
script
>
제이쿼리를 사용한 코드입니다.
추천0
댓글목록
등록된 댓글이 없습니다.