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

ZDNet软件频道 时间:2008-09-20 作者: | 天极网  我要评论()
本文关键词:浏览器 弹出式 CSS 软件
转自Dynamic Drive,纯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="" width="100px" height="66px" border="0" /><span><img src="" /><br />Simply beautiful.</span></a>

<a class="thumbnail" href="#thumb"><img src="" width="100px" height="66px" border="0" /><span><img src="" /><br />So real, it's unreal. Or is it?</span></a>


<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="" width="100px" height="66px" border="0" /><span><img src="" /><br />Simply beautiful.</span></a>

<a class="thumbnail" href="#thumb"><img src="" width="100px" height="66px" border="0" /><span><img src=/><br />So real, it's unreal. Or is it?</span></a>
运行代码复制代码另存代码

浏览器

弹出式

CSS

软件


百度大联盟认证黄金会员Copyright© 1997- CNET Networks 版权所有。 ZDNet 是CNET Networks公司注册服务商标。
中华人民共和国电信与信息服务业务经营许可证编号:京ICP证010391号 京ICP备09041801号-159
京公网安备:1101082134