<!– bof Notice–>
<script type=”text/javascript”>
function window_event_scroll()
{
if(!document.getElementById(“noticy”))return;
var top = document.documentElement.scrollTop + 150;
if(top < 0) top = 0;
document.getElementById(“noticy”).style.top = top + “px”;
}
if (window.attachEvent)
{
window.attachEvent(“onscroll”, window_event_scroll);
}
else
{
window.addEventListener(“scroll”,window_event_scroll,false);
}
function noticyclose(){
document.getElementById(“noticy”).style.display=”none”;
}
</script><div style=”position: absolute; top: 150px; right: 10px; width: 160px; z-index:1001;” id=”noticy”><table width=”165″ border=”0″ style=”background-color:#55565A; font-family:Arial, Helvetica, sans-serif;”>
<th align=”center” style=”color: #CB2C00; padding-top: 10px; font-size: 23px; font-weight:bold;”>Sales Promotion</th>
<tr>
<td style=”padding: 5px; margin:5px; color: #FFFFFF; font-size: 16px;”> Buy any two shoes more than $100, get one pair of beach shoes for free. The more you buy, the more you get.For more details,please <a href=”/page_3.html”><span style=”color:#FF0000; font-weight:bolder;”>click here</span></a> for details.</td>
</tr>
<tr>
<td align=”right” height=”20″ style=”padding-right:10px; padding-bottom:5px; font-size:12px;”><a href=”javascript:noticyclose();”>Close</a></td>
</tr>
</table></div><!– eof Notice–>
代码绝对可用,相关的可以根据自己的需要来修改代码里面的样式。