织梦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>
<!-- //图片按比例缩放
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
下一篇:织梦dedecms如何在{dede:type typeid='1'}中调用[field:seotitle /]
本文标题:织梦cms图片太大自动按比例缩放
本文地址:https://www.xiuzhanwang.com/a1/dedecms/16772.html
您可能感兴趣的文章
- 08-05Dedecms文件目录结构解说(能知道织梦每个文件有什么用)
- 08-05Dedecms5.7版ckeditor网页编辑器添加中文字体
- 08-05织梦DedeCMS获取当前栏目文章数量
- 08-05织梦模板如何添加和调用自定义字段的方法
- 08-05DedeCMS后台模块列表显示空白的解决办法
- 08-05DedeCMS自定义字段图片调用的问题{dede:img ...}解决方法
- 08-05织梦DedeCMS调用显示discuz里面主题的方法
- 08-05限制织梦会员每天投稿数量方法
- 08-05常用的织梦dedecms安全设置集合整理
- 08-05织梦教程:后台编辑器添加中文字体方法