⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sms.js

📁 网页源码,是最好的网店代码。可以支持批量上传产品等功能。
💻 JS
字号:
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)  
}  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -