成功解决DEDECMS 5.3图片大小自适应问题

成功解决织梦DEDECMS 5.3图片大小适应问题
图片模板加入以下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()">

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/ddd992bf70eac1051b509e7a71348132.html