當前位置:編程學習大全網 - 源碼下載 - php頁面中怎麽做qq消息提醒框

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="block";

show=setInterval("changeH('up')",2);

}

else

{

hide=setInterval("changeH('down')",2);

}

}

function changeH(str)

{

var MsgPop=document.getElementById("winpop");

var popH=parseInt(MsgPop.style.height);

if(str=="up")

{

if (popH<=100) MsgPop.style.height=(popH+4).toString()+"px";

else clearInterval(show);

}

if(str=="down")

{

if (popH>=4) MsgPop.style.height=(popH-4).toString()+"px";

else

{

clearInterval(hide);

MsgPop.style.display="none";

}

}

}

window.onload=function()

{

document.getElementById('winpop').style.height='0px';

setTimeout("tips_pop()",800);

}

</script>

</head>

<body leftmargin="0" topmargin="0" bgcolor="#000000">

<div id="winpop">

<div class="title">短消息<span class="close" onClick="tips_pop()">×</span></div>

<div class="con">未讀消息 (3)</div>

</div>

</body>

</html>

  • 上一篇:股票強弱度是什麽意思
  • 下一篇:程序員客棧接單可靠嗎?
  • copyright 2024編程學習大全網