高手就不要说了,公开才是正解,PHPWIND里面全都是这样的帖子,而这里一个有用的帖子都没有看到.
AD一下,
5.0分类信息网演示:http://www.it128.net/ecms/
修改内容模版, 找到<link href="[!--news.url--]skin/default/css/style.css" rel="stylesheet" type="text/css" /> |
在下面插入:
<script language="JavaScript"> <!-- var flag=false; function DrawImage(ImgD){ var image=new Image(); image.src=ImgD.src; if(image.width>0 && image.height>0){ flag=true; if(image.width/image.height>= 200/160){ if(image.width>200){ ImgD.width=200; ImgD.height=(image.height*200)/image.width; }else{ ImgD.width=image.width; ImgD.height=image.height; } } else{ if(image.height>160){ ImgD.height=160; ImgD.width=(image.width*160)/image.height; }else{ ImgD.width=image.width; ImgD.height=image.height; } } } } //--> </script> |
红色部分请自行修改,调整适合自己的宽*高度
然后在要实现等比缩略的图片属性下按以下方法修改
<img src="http://www.it128.net/bbs/attachment/thumb/14_4_321b2eb79570c97.jpg" onload="DrawImage(this);">
在IMG属性里面加入红色部分
|