当前位置 : 主页 > 建站教程 > dedecms >

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

来源:互联网 收集:自由互联 发布时间:2021-06-20
成功解决织梦DEDECMS 5.3图片大小自适应问题 在图片模板加入以下JS代码 script language=javascript function ResizeImages(){ var myimg,oldwidth; var maxwidth=500; // 图片宽度超过这个数值就自动缩成500px的宽
成功解决织梦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()">
网友评论
相关栏目