成功解决织梦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()">
本网刊登的文章均仅代表作者个人观点,并不代表本网立场。文中的论述和观点,敬请读者注意判断。
本文地址:http://www.xlkjgs.com/notes/web/6920.html