首页 | 代码中心 | 源码下载 | 用户管理 | 用户留言 | 导航 | 繁體
代码秀,专业程序代码提供商(源码下载,编程技术)
隐藏格式的浮动层 <--------------------------------> <Script> // Set the url of the banner popup window page var theURL = "http://9966ok.com"; // Set the title of the popup window var title = "Goobers R Us" // Set the size of the popup window var windowWidth = 478; // cannot be less than 100 var windowHeight = 100; // cannot be less than 100 // Set the position of the popup window var windowX = 100; var windowY = 100; // Set true to auto-center (positions will be ignored) var autocenter = false; // Set true for popup to close when launch page does var autoclose = false; // Do not edit below this line. // ============================ var s="width="+windowWidth+",height="+windowHeight; var beIE=document.all?true:false; var done=new Object("no"); if(autocenter){ windowX = (window.screen.width-windowWidth)/2; windowY = (window.screen.height-windowHeight)/2; } function doAgilePopup(){ if (beIE){ agilePopper = window.open("","popAgile","fullscreen,"+s); agilePopper.blur(); window.focus(); agilePopper.resizeTo(windowWidth,windowHeight); agilePopper.moveTo(windowX,windowY); var frameString=""+ ""+ ""+title+""+ ""+ ""+ ""+ ""+ ""+ "" agilePopper.document.open(); agilePopper.document.write(frameString); agilePopper.document.close(); }else{ agilePopper=window.open(theURL,"popAgile","scrollbars=no,"+s); agilePopper.blur(); window.focus(); agilePopper.resizeTo(windowWidth,windowHeight); agilePopper.moveTo(windowX,windowY); } agilePopper.blur(); if (autoclose){ window.onunload = function(){agilePopper.close();} } done="okay"; } </Script> <---------------------------------->