css控制图片大小
我想要这样一个效果,当鼠标移动到页面的图片上是,图片放大到原来的150%,然后鼠标移开图片,图片恢复到原来大小....
我想要这样一个效果,当鼠标移动到页面的图片上是,图片放大到原来的150%,然后鼠标移开图片,图片恢复到原来大小.
展开
3个回答
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style>
.imgplay{
width:100%;
height:100%;
}
.imgplay li a img{
border:0;
}
.imgplay li a img:hover{
width:150%;
height:150%;
}
</style>
</head>
<body>
<div class="imgplay">
<ul>
<li><a href="#"><img src="http://img1.qq.com/lady/20050808/2138562.jpg" /></a></li>
<li><a href="#"><img src="http://img1.qq.com/lady/20050808/2138563.jpg" /></a></li>
<li><a href="#"><img src="http://img1.qq.com/lady/20050808/2138570.jpg" /></a></li>
</ul>
</div>
</body>
</html>
大概就是你要的效果了 关键是 img也可以像a一样 应用 img:hover 来显示鼠标移上去的图片的效果.这上面是放大到屏幕的150%了。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style>
.imgplay{
width:450px;
hight:450px;
}
.imgplay li{
list-style:none;
}
.imgplay li a img{
border:0;
}
.imgplay li a img:hover{
width:150%;
}
</style>
</head>
<body>
<div class="imgplay">
<ul>
<li><a href="#"><img src="http://img1.qq.com/lady/20050808/2138562.jpg"
/></a></li>
<li><a href="#"><img src="http://img1.qq.com/lady/20050808/2138563.jpg"
/></a></li>
<li><a href="#"><img src="http://img1.qq.com/lady/20050808/2138570.jpg"
/></a></li>
</ul>
</div>
</body>
</html>
这是放大到图片的150%,现修改了一下下。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style>
.imgplay{
width:100%;
height:100%;
}
.imgplay li a img{
border:0;
}
.imgplay li a img:hover{
width:150%;
height:150%;
}
</style>
</head>
<body>
<div class="imgplay">
<ul>
<li><a href="#"><img src="http://img1.qq.com/lady/20050808/2138562.jpg" /></a></li>
<li><a href="#"><img src="http://img1.qq.com/lady/20050808/2138563.jpg" /></a></li>
<li><a href="#"><img src="http://img1.qq.com/lady/20050808/2138570.jpg" /></a></li>
</ul>
</div>
</body>
</html>
大概就是你要的效果了 关键是 img也可以像a一样 应用 img:hover 来显示鼠标移上去的图片的效果.这上面是放大到屏幕的150%了。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style>
.imgplay{
width:450px;
hight:450px;
}
.imgplay li{
list-style:none;
}
.imgplay li a img{
border:0;
}
.imgplay li a img:hover{
width:150%;
}
</style>
</head>
<body>
<div class="imgplay">
<ul>
<li><a href="#"><img src="http://img1.qq.com/lady/20050808/2138562.jpg"
/></a></li>
<li><a href="#"><img src="http://img1.qq.com/lady/20050808/2138563.jpg"
/></a></li>
<li><a href="#"><img src="http://img1.qq.com/lady/20050808/2138570.jpg"
/></a></li>
</ul>
</div>
</body>
</html>
这是放大到图片的150%,现修改了一下下。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询