欢迎来到入门教程网!

dedecms

当前位置:主页 > CMS教程 > dedecms >

织梦cms图片太大自动按比例缩放

来源:本站原创|时间:2021-08-05|栏目:dedecms|点击:

<script language="JavaScript">
<!-- //图片按比例缩放
var flag=false; function DrawImage(ImgD,iwidth,iheight){ //参数(图片,允许的宽度,允许的高度)
var image=new Image(); image.src=ImgD.src;
if(image.width>0 && image.height>0){ flag=true; if(image.width/image.height>= iwidth/iheight){ if(image.width>iwidth){ ImgD.width=iwidth; ImgD.height=(image.height*iwidth)/image.width; }
else{ ImgD.width=image.width; ImgD.height=image.height; }
ImgD.alt=image.width+"×"+image.height; }
else{ if(image.height>iheight){ ImgD.height=iheight; ImgD.width=(image.width*iheight)/image.height; }
else{ ImgD.width=image.width; ImgD.height=image.height; } ImgD.alt=image.width+"×"+image.height; } } }
//-->
</script>
然后后台一键更新,这样就可以了。
 

上一篇:织梦dedecms搜索页显示条数10条更改

栏    目:dedecms

下一篇:织梦dedecms如何在{dede:type typeid='1'}中调用[field:seotitle /]

本文标题:织梦cms图片太大自动按比例缩放

本文地址:https://www.xiuzhanwang.com/a1/dedecms/16772.html

更多dedecms

您可能感兴趣的文章

阅读排行

本栏相关

随机阅读

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有