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,527
16년 전 조회 2,479
16년 전 조회 2,426
16년 전 조회 1,999
16년 전 조회 2,537
16년 전 조회 2,740
16년 전 조회 1,845
16년 전 조회 2,229
16년 전 조회 2,402
16년 전 조회 1,485
16년 전 조회 2,185
16년 전 조회 1,873
16년 전 조회 2,366
16년 전 조회 1,767
16년 전 조회 2,663
16년 전 조회 2,365
16년 전 조회 6,346
17년 전 조회 2,361
17년 전 조회 4,126
17년 전 조회 1,898
17년 전 조회 2,195
17년 전 조회 2,543
17년 전 조회 3,064
17년 전 조회 2,761
17년 전 조회 3,193
17년 전 조회 3,439
17년 전 조회 3,463
17년 전 조회 2,274
17년 전 조회 1,984
17년 전 조회 1,858
17년 전 조회 2,181
17년 전 조회 1,661
17년 전 조회 2,418
17년 전 조회 2,196
17년 전 조회 2,041
17년 전 조회 1,740
17년 전 조회 2,611
17년 전 조회 3,689
17년 전 조회 2,576
17년 전 조회 2,189
17년 전 조회 1,958
17년 전 조회 2,489
17년 전 조회 5,185
17년 전 조회 1,879
17년 전 조회 2,622
17년 전 조회 2,587
17년 전 조회 2,865
17년 전 조회 2,582
17년 전 조회 4,912
17년 전 조회 3,411
17년 전 조회 3,319
17년 전 조회 2,037
17년 전 조회 1,704
17년 전 조회 4,428
17년 전 조회 2,093
17년 전 조회 2,094
17년 전 조회 2,584
17년 전 조회 2,335
17년 전 조회 1,965
17년 전 조회 4,375
17년 전 조회 2,201
17년 전 조회 3,556
17년 전 조회 3,478
17년 전 조회 1,468
17년 전 조회 2,250
17년 전 조회 2,032
17년 전 조회 2,278
17년 전 조회 3,090
17년 전 조회 3,448
17년 전 조회 3,654
17년 전 조회 3,773
17년 전 조회 1,866
17년 전 조회 1,864
17년 전 조회 2,671
17년 전 조회 2,421
17년 전 조회 2,700
17년 전 조회 3,249
17년 전 조회 3,706
17년 전 조회 2,792
17년 전 조회 2,067
17년 전 조회 3,639
17년 전 조회 3,504
17년 전 조회 3,462
17년 전 조회 4,341
17년 전 조회 2,994
17년 전 조회 2,841
17년 전 조회 3,099
17년 전 조회 3,315
17년 전 조회 3,042
17년 전 조회 1,903
17년 전 조회 2,301
17년 전 조회 1,947
17년 전 조회 2,353
17년 전 조회 2,970
17년 전 조회 9,128
17년 전 조회 3,579
17년 전 조회 4,631
17년 전 조회 2,398
17년 전 조회 4,058
17년 전 조회 1,958