百度登陆功能

来源:百度知道 编辑:UC知道 时间:2024/07/07 11:56:22
用了百度的知道后,体验感很强烈!登陆时候屏蔽主页面是怎么实现的。本人半路出家进入编程不久,想实现这么个效果!还望高人指点迷津!

<script>
function sAlert(){
var eSrc=(document.all)?window.event.srcElement:arguments[1];
var shield = document.createElement("DIV");
shield.id = "shield";
shield.style.position = "absolute";
shield.style.left = "0px";
shield.style.top = "0px";
shield.style.width = "100%";
shield.style.height = ((document.documentElement.clientHeight>document.documentElement.scrollHeight)?document.documentElement.clientHeight:document.documentElement.scrollHeight)+"px";
shield.style.background = "#333";
shield.style.textAlign = "center";
shield.style.zIndex = "10000";
shield.style.filter = "alpha(opacity=0)";
shield.style.opacity = 0;

var alertFram = document.createElement("DIV");
alertFram.id="alertFram";