我是靠谱客的博主 神勇冬瓜,最近开发中收集的这篇文章主要介绍短信提示使用 特效,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

复制代码 代码如下:

<SCRIPT language=JavaScript> 
<!-- 
window.onload = getMsg; 
window.onresize = resizeDiv; 
window.onerror = function(){} 
//短信提示使用 
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>600) 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>

最后

以上就是神勇冬瓜为你收集整理的短信提示使用 特效的全部内容,希望文章能够帮你解决短信提示使用 特效所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(205)

评论列表共有 0 条评论

立即
投稿
返回
顶部