日期:2014-05-17  浏览次数:20641 次

CSS图片放大特效 第三种实现
<html>
<head>
<title>CSS图片放大特效</title>
<style type="text/css">
.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{
visibility: visible;
top: 0;
left: 60px;
}
</style>
</head>
<body>

<a class="thumbnail" href="#thumb"><img src="/jscss/demoimg/wall_s3.jpg" border="0" target="_blank"/>
<span><img src="/jscss/demoimg/wall3.jpg" border="0"><br>好美的景致啊~</span></a>
</body>
</html>