JavaScript实现网页图片等比例缩放
网站公司的界面确定下来了,我们想要让网站公司把我们的网站设计成自动适应显示屏,以防网页在小的显示屏下面看不到,或者整个显示屏都是内容。但是网站公司说这是自适应屏,要实现这种技术很难,而且还要多交钱。所以我想问问,要实现自适应屏难吗?实在css里面写代码还是在js里面写代码?
只考虑pc端的呢?不考虑移动端的。要实现这样的效果难吗?还是js+css实现这样的效果吗?
< script language="javascript" type="text/javascript">
< !--
// 说明:用 JavaScript实现网页图片等比例缩放
// 整理:http://www.CodeBit.cn
function DrawImage(ImgD,FitWidth,FitHeight)
{
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0)
{
if(image.width/image.height>= FitWidth/FitHeight)
{
if(image.width>FitWidth)
{
ImgD.width=FitWidth;
ImgD.height=(image.height*FitWidth)/image.width;
}
else
{
ImgD.width=image.width;
ImgD.height=image.height;
}
}
else
{
if(image.height>FitHeight)
{
ImgD.height=FitHeight;
ImgD.width=(image.width*FitHeight)/image.height;
}
else
{
ImgD.width=image.width;
ImgD.height=image.height;
}
}
}
}
//-->
< script>
<img src="1148202890.jpg" alt="自动缩放后的效果" width="200" height="200" onload="javascript:DrawImage(this,200,200);" />