博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
网页图片缩放(js)
阅读量:5789 次
发布时间:2019-06-18

本文共 1381 字,大约阅读时间需要 4 分钟。

给图片加上onload事件:if(this.width>500)this.width=500

 

具体步骤:

方法一:在图片加载完毕后用onload句柄触发执行脚本,重设图片的宽度为图片宽度和300两者的最小值。

代码示例: <img src="demo.gif" οnlοad="if(this.width>300)this.width=300">
或者
<img src="demo.gif" οnlοad="this.width=Math.min(this.width,300)">

 

方法二:按比例缩小。只需要把js加在head之间,再在body处加入οnlοad="ResizeImages();"代码。

<script language="JavaScript"> 
<!-- 
function ResizeImages()
{
var myimg,oldwidth; 
var maxwidth=180; //缩放系数 
for(i=0;i <document.images.length;i++){
myimg = document.images[i]; 
if(myimg.width > maxwidth)
oldwidth = myimg.width; 
myimg.width = maxwidth; 
myimg.height = myimg.height * (maxwidth/oldwidth); 
}
//--> 
</script>

<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>

调用:<img src="images/toplogo.gif" οnlοad="javascript:DrawImage(this,100,100)">

转载地址:http://hxgyx.baihongyu.com/

你可能感兴趣的文章
多线程-ReentrantLock
查看>>
数据结构之链表与哈希表
查看>>
IIS7/8下提示 HTTP 错误 404.13 - Not Found 请求筛选模块被配置为拒绝超过请求内容长度的请求...
查看>>
http返回状态码含义
查看>>
响应式网站对百度友好关键
查看>>
洛谷P2179 骑行川藏
查看>>
(十八)js控制台方法
查看>>
VB关键字总结
查看>>
android代码生成jar包并混淆
查看>>
一个不错的vue项目
查看>>
屏蔽指定IP访问网站
查看>>
python学习 第一天
查看>>
根据毫秒数计算出当前的“年/月/日/时/分/秒/星期”并不是件容易的事
查看>>
python的图形模块PIL小记
查看>>
shell变量子串
查看>>
iOS的主要框架介绍 (转载)
查看>>
react报错this.setState is not a function
查看>>
poj 1183
查看>>
从根本解决跨域(nginx部署解决方案)
查看>>
javascript实现的一个信息提示的小功能/
查看>>