개인적인 정리

이미지 리사이징 본문

Script & jQuery

이미지 리사이징

yeon.Biju 2017. 3. 21. 11:11

큰 이미지의 경우 화면밖으로 이미지가 나가는 경우가 발생하여서

아래와 같은 스크립트를 맨 아래에 넣어주었다. 


<script type="text/javascript">

$(document).ready(function(){

$("img").css({"width":"", "height":"", "max-width": "100%"});

})

</script>



이걸 집어넣으니 화면 밖으로 이미지가 나가지 않는다.



'Script & jQuery' 카테고리의 다른 글

jquery load 여부에 따라서 jquery load  (0) 2017.12.13
location.replace  (0) 2017.04.10
jquery checkbox 체크된 값  (1) 2017.03.28
javascript indexOf()  (0) 2017.03.27
업로드 파일 용량 체크  (0) 2017.03.21
jquery datetimepicker  (0) 2017.03.20
selectbox 의 선택된 값 읽어오기  (0) 2017.03.20
jquery trim  (0) 2017.03.11
Comments