R

이미지 리사이즈 jQuery 로 변경 방법

board.js 파일에 아래 항목을 추가 해주세요.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
jQuery.resimg = function(element, options){
    var setting = { imageWidth:600, borderColor:false }
    $.extend(setting, options);

    var imageWidth = setting.imageWidth;
    var borderColor = setting.borderColor;


    $(element).each(function(){
var img_width = $(this).outerWidth();
    var img_height = $(this).outerHeight();

//원래 사이즈를 저장한다.
    $(this).attr("tmp_width", img_width);
    $(this).attr("tmp_height", img_height);

    // 이미지 폭이 테이블 폭보다 크다면 테이블폭에 맞춘다
    if(img_width > imageWidth) {
        imageHeight = parseFloat(img_width/ img_height);
        $(this).width(imageWidth).height(parseInt(imageWidth / imageHeight)).css("cursor", "pointer");
//$(this).width(imageWidth).css("cursor", "pointer");
    }

    if (borderColor) $(this).css({ "border" : "1px solid "+ borderColor });
});
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

그리고 view스킨 파일 최하단스크립트를 아래와 같이 수정하세요.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//제이쿼리 임포트
<script language="JavaScript" src="<?="$g4[path]/js/jquery-latest.js"></script>
<script language="JavaScript" src="<?="$g4[path]/js/board.js"?>"></script>
<script language="JavaScript">
$(document).ready(function(){
    $.resimg("img[name='target_resize_image[]']", {imageWidth:<?=(int)$board[bo_image_width]?>});
//resizeBoardImage(<?=(int)$board[bo_image_width]?>);
    drawFont();
});
</script>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[이 게시물은 관리자님에 의해 2011-10-31 16:55:28 jQuery에서 이동 됨]
|

댓글 1개

파폭에서 이미지 팝업 띄울시 에러가 있어 약간의 코드를 수정했습니다.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
jQuery.resimg = function(element, options){
var setting = { imageWidth:600, borderColor:false }
$.extend(setting, options);

var imageWidth = setting.imageWidth;
var borderColor = setting.borderColor;

//alert($(element).children().get().length);
$(element).each(function(){
var img_width = $(this).outerWidth();
var img_height = $(this).outerHeight();

//원래 사이즈를 저장한다.
//$(this).attr("tmp_width", img_width);
//$(this).attr("tmp_height", img_height);
var i = $(element).index($(this));
$(element)[i].tmp_width = img_width;
$(element)[i].tmp_height = img_height;

// 이미지 폭이 테이블 폭보다 크다면 테이블폭에 맞춘다
if(img_width > imageWidth) {
imageHeight = parseFloat(img_width/ img_height);
$(this).width(imageWidth).height(parseInt(imageWidth / imageHeight)).css("cursor", "pointer");
//$(this).width(imageWidth).css("cursor", "pointer");
}

if (borderColor) $(this).css({ "border" : "1px solid "+ borderColor });
});
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
16년 전 조회 1,461
16년 전 조회 2,417
16년 전 조회 2,371
16년 전 조회 1,930
16년 전 조회 2,478
16년 전 조회 2,680
16년 전 조회 1,795
16년 전 조회 2,150
16년 전 조회 2,332
16년 전 조회 1,415
16년 전 조회 2,128
16년 전 조회 1,812
16년 전 조회 2,309
16년 전 조회 1,709
16년 전 조회 2,606
16년 전 조회 2,301
16년 전 조회 6,297
16년 전 조회 2,321
17년 전 조회 4,084
17년 전 조회 1,848
17년 전 조회 2,154
17년 전 조회 2,494
17년 전 조회 3,002
17년 전 조회 2,698
17년 전 조회 3,154
17년 전 조회 3,391
17년 전 조회 3,404
17년 전 조회 2,219
17년 전 조회 1,941
17년 전 조회 1,807
17년 전 조회 2,124
17년 전 조회 1,604
17년 전 조회 2,356
17년 전 조회 2,139
17년 전 조회 1,984
17년 전 조회 1,686
17년 전 조회 2,555
17년 전 조회 3,623
17년 전 조회 2,522
17년 전 조회 2,135
17년 전 조회 1,897
17년 전 조회 2,431
17년 전 조회 5,115
17년 전 조회 1,814
17년 전 조회 2,561
17년 전 조회 2,527
17년 전 조회 2,807
17년 전 조회 2,517
17년 전 조회 4,853
17년 전 조회 3,353
17년 전 조회 3,258
17년 전 조회 1,979
17년 전 조회 1,646
17년 전 조회 4,367
17년 전 조회 2,034
17년 전 조회 2,032
17년 전 조회 2,519
17년 전 조회 2,270
17년 전 조회 1,904
17년 전 조회 4,319
17년 전 조회 2,139
17년 전 조회 3,497
17년 전 조회 3,420
17년 전 조회 1,415
17년 전 조회 2,191
17년 전 조회 1,964
17년 전 조회 2,221
17년 전 조회 3,033
17년 전 조회 3,382
17년 전 조회 3,589
17년 전 조회 3,709
17년 전 조회 1,808
17년 전 조회 1,807
17년 전 조회 2,617
17년 전 조회 2,353
17년 전 조회 2,653
17년 전 조회 3,200
17년 전 조회 3,654
17년 전 조회 2,750
17년 전 조회 2,017
17년 전 조회 3,601
17년 전 조회 3,463
17년 전 조회 3,421
17년 전 조회 4,292
17년 전 조회 2,943
17년 전 조회 2,791
17년 전 조회 3,047
17년 전 조회 3,274
17년 전 조회 2,998
17년 전 조회 1,862
17년 전 조회 2,262
17년 전 조회 1,911
17년 전 조회 2,314
17년 전 조회 2,916
17년 전 조회 9,077
17년 전 조회 3,536
17년 전 조회 4,595
17년 전 조회 2,347
17년 전 조회 4,012
17년 전 조회 1,906