POST TIME:2017-11-13 00:44
	在图片模板加入以下JS代码
	<script language="javascript">
	function ResizeImages(){
	var myimg,oldwidth;
	var maxwidth=500; // 图片宽度超过这个数值就自动缩成500px的宽,5.3图集模板默认宽度为712.。
	for(i=0;i<document.images.length;i++){
	myimg = document.images
	if(myimg.width > maxwidth) {
	oldwidth = myimg.width;
	myimg.width = maxwidth;
	myimg.height = myimg.height * (maxwidth/oldwidth);
	  }
	 }
	}
	ResizeImages();
	</script>
	
	
	以上在<head></head>加入
	
	然后在BODY里加:
	<body onload="ResizeImages()">
	
	保持,生成,超大图片乖乖适应,哈哈
