其它代码
可以关闭的精彩提示栏
看看效果
2008.10.12
xhtml部分
<p id="tips">
亲爱的朋友:如果你有任何意见、建议、疑惑、抱怨,欢迎随时Q我,我会在第一时间回复的。
<a href="tencent://message/?uin=52541666&Site=网页特效库&Menu=yes">点击Q我^O^</a>
<img src="1.gif" alt="关闭" title="关闭" id="close" />
</p>
css部分
#tips {
position:relative;
margin:0;
border:1px solid #FA9150;
padding:5px 10px 5px 10px;
width:758px;
background-color:#FEF1E9;
line-height:160%;
font-size:12px;
}
#close {
position:absolute;
top:7px;
right:8px;
}
JavaScript部分
function Close() {
document.getElementById("tips").style.display = "none";
}
window.onload = function() {
document.getElementById("tips").onclick = Close;
}