WEB开发网
开发学院网页设计DivCss CSS的“弹出式”图像浏览器 阅读

CSS的“弹出式”图像浏览器

 2006-05-19 19:20:28 来源:WEB开发网   
核心提示:CSS的”弹出式“图像浏览器转自Dynamic Drive,纯CSS的,CSS的“弹出式”图像浏览器,原理就是在a标记里面放两张图片,一张大图,一张小图,正常情况下小图可见

CSS的”弹出式“图像浏览器

转自Dynamic Drive,纯CSS的,原理就是在a标记里面放两张图片,一张大图,一张小图,正常情况下小图可见,大图隐藏,a:hover就显示大图了

以下是引用片段:
<style type="text/css">

.thumbnail{
position: relative;
z-index: 0;
}

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

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

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */

}

</style>
<a class="thumbnail" href="#thumb"><img src="http://tech.cncms.com/tech/UploadPic/2010910/2010910192028987.jpg" width="100px" height="66px" border="0" /><span><img src="http://tech.cncms.com/tech/UploadPic/2010910/2010910192029929.jpg" /><br />Simply beautiful.</span></a>

<a class="thumbnail" href="#thumb"><img src="http://tech.cncms.com/tech/UploadPic/2010910/2010910192030147.jpg" width="100px" height="66px" border="0" /><span><img src="http://tech.cncms.com/tech/UploadPic/2010910/2010910192030858.jpg" /><br />So real, it's unreal. Or is it?</span></a>

Tags:CSS 弹出式 图像

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接