js实现类似MSN提示的页面效果代码分享

这是一篇基于javascript实现了模仿MSN消息提示的效果,推荐给大家,感兴趣的小伙伴们可以参考一下。

运行效果图:----------------------查看效果-----------------------

js实现类似MSN提示的页面效果代码分享

js实现类似MSN提示的页面效果代码分享

小提示:浏览器中如果不能正常运行,可以尝试切换浏览模式。
为大家分享的模仿MSN消息提示的效果代码如下

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <meta content="51windows.Net"> <META CONTENT="haiwa"> <title>类似MSN提示的页面效果</title> </head> <body scroll=no> 看到右下角的提示了吗?如果没有看到,<button onclick=location.reload();>刷新</button>一下 <script language="JavaScript"> window.onload = getMsg; window.onresize = resizeDiv; window.onerror = function(){} //短信提示使用(asilas添加) var divTop,divLeft,divWidth,divHeight,docHeight,docWidth,objTimer,i = 0; function getMsg() { try{ divTop = parseInt(document.getElementById("eMeng").style.top,10) divLeft = parseInt(document.getElementById("eMeng").style.left,10) divHeight = parseInt(document.getElementById("eMeng").offsetHeight,10) divWidth = parseInt(document.getElementById("eMeng").offsetWidth,10) docWidth = document.body.clientWidth; docHeight = document.body.clientHeight; document.getElementById("eMeng").style.top = parseInt(document.body.scrollTop,10) + docHeight + 10;// divHeight document.getElementById("eMeng").style.left = parseInt(document.body.scrollLeft,10) + docWidth - divWidth document.getElementById("eMeng").style.visibility="visible" objTimer = window.setInterval("moveDiv()",10) } catch(e){} } function resizeDiv() { i+=1 if(i>500) closeDiv() try{ divHeight = parseInt(document.getElementById("eMeng").offsetHeight,10) divWidth = parseInt(document.getElementById("eMeng").offsetWidth,10) docWidth = document.body.clientWidth; docHeight = document.body.clientHeight; document.getElementById("eMeng").style.top = docHeight - divHeight + parseInt(document.body.scrollTop,10) document.getElementById("eMeng").style.left = docWidth - divWidth + parseInt(document.body.scrollLeft,10) } catch(e){} } function moveDiv() { try { if(parseInt(document.getElementById("eMeng").style.top,10) <= (docHeight - divHeight + parseInt(document.body.scrollTop,10))) { window.clearInterval(objTimer) objTimer = window.setInterval("resizeDiv()",1) } divTop = parseInt(document.getElementById("eMeng").style.top,10) document.getElementById("eMeng").style.top = divTop - 1 } catch(e){} } function closeDiv() { document.getElementById('eMeng').style.visibility='hidden'; if(objTimer) window.clearInterval(objTimer) } </script> <DIV id=eMeng> <TABLE cellSpacing=0 cellPadding=0 bgColor=#cfdef4 border=0> <TBODY> <TR> <TD width=30 height=24></TD> <TD vAlign=center> 短消息提示:</TD> <TD vAlign=center align=right width=19><span title=关闭 onclick=closeDiv() >×</span><!-- <IMG title=关闭 onclick=closeDiv() hspace=3 src="https://www.jb51.net/msgClose.jpg"> --></TD> </TR> <TR> <TD colSpan=3 height=90> <DIV>您有<font color=#FF0000>1</font>封新短消息<BR><BR> <DIV align=center><a href="javascript:alert('你好')"><font color=#FF0000>点击查看短信</font></a></DIV </DIV> </TD> </TR> </TBODY> </TABLE> </DIV> </body> </html>

以上就是为大家分享的模仿MSN消息提示的效果代码,希望大家可以喜欢。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wggxyx.html