이미지 사이즈 재 조정(너무 큰 이미지일경우 작게 조정 함)
페이지 정보
본문
--------------------------------------------------
<script>
function resize(img) {
if(img.width > 160) img.width = 160;
}
</script>
<img onLoad='resize(this)' src='그림경로'>
-------------------------------------------------------
<script>
function resize(img) {
if(img.width > 160) img.width = 160;
}
</script>
<img onLoad='resize(this)' src='그림경로'>
-------------------------------------------------------
- 이전글한글이 들어간 문자열 길이 구하는 스크립트 21.02.10
- 다음글이미지 미리보기 21.02.10
댓글목록
등록된 댓글이 없습니다.