一种方法:见如下
<html>
<head>
</head>
<body>
<div id="layout">
<img style="width:200px;height:100px:" id="autoImg" src="Hatake Kakashi.jpg" />
</div>
</body>
<script type="text/javascript">
window.onresize=function() {
var docWidth=document.body.clientWidth;
var docHeight=document.body.clientHeight;
var el=document.getElementById("autoImg");
el.style.width=docWidth * 0.5+'px';
el.style.height=docHeight * 0.5 +'px';
}
</script>
</html>
图片不是放在Img标签里,而是作为背景出现的,
background-image: url(../Images/Login/login01.gif); background-size: 100% 100%;
@淘@淘: 你得把问题描述清楚,说明你想要的具体操作,背景图片的元素是哪个,是BODY还是其它
<!--设置背景图--> background-image : url (../Images/Login/login 01 .gif); background-repeat : no-repeat ; background-position : center bottom ;background- size : 100% 100% ; <!--并在<table>中插入CSS的一种滤镜--> style= "filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='', sizingMethod='scale')" |