$(document).ready(function() {
	$(".disImg img").each(function() {
		
		var th = $(this).height();
		var tw = $(this).width();
		
		if(th < tw) {
		
			if(tw > 89) {
				$(this).css("width","89")
			}

		} else if(th > tw) {
			if(th > 89) {
				$(this).css("height","89");
			}
		} else if(th == tw) {
			if(th>89) {
				$(this).css("height","89");
			}
		}

		var topm = $(this).height()/2;
		var leftm = $(this).width()/2;
	
		$(this).css({
			marginLeft:-1*leftm,
			marginTop:-1*topm
		});
	});
});

'PROGRAM > JQUERY' 카테고리의 다른 글

첫번째 폼에 포커스주기  (0) 2013.12.09
클릭하면 불러오기~  (0) 2013.12.02
클릭한 링크 active  (0) 2013.09.10
와우슬라이더  (0) 2013.09.05
제이쿼리 곡선처리  (0) 2013.09.02