jquery 기반 글 의 모든 그림 width 크기 일괄 설정 방법

2479 단어 그림 크기width
앞 에 jquery 라 이브 러 리 를 불 러 올 것 입 니 다.

<script type="text/javascript"> 
var setNewsImg = function(obj){ 
$(obj).find('img').each(function(i){ 
var imgw = $(this).width(); 
var imgh = $(this).height(); 
var scale=1; 
if(imgw>634){ 
scale = 634/imgw; 
console.log(scale); 
$(this).height(scale*imgh); 
$(this).width(scale*imgw); 
} 
}); 
} 
</script type="text/javascripy"> 
   
<script> 
$(function(){ 
setNewsImg('.news-img') 
}) 
</script> 
코드 2:

$(window).bind("load", function() { 
 //        
 $('#imglist img').each(function() { 
  var maxWidth = 120; //         
  var maxHeight = 120; //         
  var ratio = 0; 
  var width = $(this).width(); 
  var height = $(this).height(); 
  
  if(width > maxWidth){ 
   ratio = maxWidth / width; 
   $(this).css("width", maxWidth); 
   $(this).css("height", height * ratio); 
   height = height * ratio; 
  } 
  
  if(height > maxHeight){ 
   ratio = maxHeight / height; 
   $(this).css("height", maxHeight); 
   $(this).css("width", width * ratio); 
   width = width * ratio; 
  } 
 }); 
});
코드 3:

<script>
$(function(){
$(".daima img").each(function(){
maxWidth =700;
ratio = 0;
width = $(this).width();
height = $(this).height();
if(width > maxWidth){
ratio = maxWidth / width;
$(this).width(maxWidth);
height = height * ratio;
$(this).height(parseInt(height));
}});
});
</script>
코드 4:추천 사용

$('#content').find('img').each(function(){
    var img = this;
    if (img.width > 600) {
      img.style.width = "600px";
      img.style.height = "auto";
      //$(img).removeAttr('height');
      var aTag = document.createElement('a');
      aTag.href = img.src;
			aTag.target="_blank";
      $(aTag).addClass('bPic')
      .insertAfter(img).append(img)
      .lightBox(options);
    }
  });
이 콘 텐 츠 는 글 내용 부분의 id 로 위 치 를 정 하 는 그림 의 크기 를 조절 할 수 있 으 므 로 추천 합 니 다.

좋은 웹페이지 즐겨찾기