php页面中怎么做qq消息提醒框

来源:百度知道 编辑:UC知道 时间:2024/06/30 16:38:47
我用的是php页面,想做一个像qq提示您有最新回复的那种效果,谢谢啦!

我这有一份模拟桌面右下角QQ消息提示的代码:请楼主新建一个txt文本文件,将以下代码复制进去保存为html文件并双击运行。

<html>
<head>
<style type="text/css">
#winpop { width:200px; height:0px; position:absolute; right:0; bottom:0; border:1px solid #999999; margin:0; padding:1px; overflow:hidden; display:none; background:#FFFFFF}
#winpop .title { width:100%; height:20px; line-height:20px; background:#290052; font-weight:bold; text-align:center; font-size:12px; color:#FFFFFF; }
#winpop .con { width:100%; height:80px; line-height:80px; font-weight:bold; font-size:12px; color:#FF0000; text-decoration:underline; text-align:center}
.close { position:absolute; right:4px; top:-1px; color:#FFFFFF; cursor:pointer}
</style>
<script type="text/javascript">
function tips_pop()
{
var MsgPop=document.getElementById("winpop");
var popH=parseInt(MsgPop.style.height);
if (popH==0)
{
MsgPop.style.display=&quo