答案 0 :(得分:0)
如果你看到有没有背景可点击图片,有一个位置固定的“透明图像”:
尝试放入层叠样式表(CSS):
body {
background-image: url("http://banners.dol.gr/opap_skin_kathigitis_tovima.jpg");
background-repeat: no-repeat;
background-position: center 40PX;
background-attachment: fixed;
background-color: #000000 !important;
}
.background {position:absolute;top:0;left:0;z-index:999;visibility:hidden;overflow:hidden;width:100%;height:880px;}
.background .first-banner {position:fixed;left:50%;visibility:visible;margin-left:-800px;}
然后在你的HTML代码中:
<div class="background">
<div class="first-banner">
<a target="_blank" href="http://www.google.com">
<img width="300" height="880" src="http://static.adman.gr/void.gif" border="0">
</a>
</div>
</div>
希望它有所帮助! :)