欢迎你的访问
 
返回天空素材库首页 http://www.Skysucai.com  
收藏本站
将本站设为首页
您当前的位置:天空素材首页 -> 隐藏格式的浮动层(弹出的无任何边的窗口!)
 
栏 目 导 航
. 常用代码 . 综合特效
. 状态特效 . 游戏特效
. 页面背景 . 页面特效
. 页面导航 . 文本操作
. 文本特效 . 图形特效
. 鼠标特效 . 时间日期
. 密码特效 . 浏览相关
. 警告对话 . 技巧特效
. 计数转换 . 测试搜索
. 代码生成 . 播放音乐
. 按钮特效 . 系统相关
. 链接特效 . 黑客性质
. 相关特效 . 窗口特效
. 广告特效 . 表单表格
. 模拟例子
相 关 文 章
· 状态栏显示链接内容...
· 又一例闪动的标题栏...
· 让标题栏文字动起来...
· 状态栏显示链接内容...
· 在输入框中输入什么...
· 状态栏打字效果特效...
· 闪动的标题栏特效
· 字符来回出现于状态...
· 在标题栏显示时间特...
· 一款状态滚动的文字...
本 类 热 门
· 各省城市
· 可以编辑的select
· 从select选择中新开的...
· 三级关联菜单
· 移动下拉框
· 显示全部Option的Sele...
· 动态提示的下拉框
· 树型下拉框菜单
· 省市县关联菜单
· 可控制的闪烁链接
· 广告脚本
· 一个很爽的公告栏
更多  
 
 
更多  
最 新 推 荐
· 状态栏时间跳动特效
· 农历挂历特效
· 真正的万年历
· 网页特效 菜单-会动的...
· 网页特效 时间-任意位...
· 个人网页特效-有前后日...
· 时间每过一秒,Radio就...
· 时钟显示在任意指定位...
· 带开关的Form时钟
· 记录几天后的日期
· 显示登陆时间
· 退出时显示访问时间
更多  
     
隐藏格式的浮动层(弹出的无任何边的窗口!)
隐藏格式的浮动层(弹出的无任何边的窗口!)
作者:佚名  来源:本站整理  名称:隐藏格式的浮动层(弹出的无任何边的窗口!) 

减小字体 增大字体

       

[提示:你可先按照下面代码提示修改 上面部分代码,再按运行,此处看到的演示不完全正确]

此特效的详细完整代码如下:

<html>
<head>
<title>隐藏格式的浮动层</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<!-------------------------------->
<body onLoad="doAgilePopup()">
<script>

// Set the url of the banner popup window page
var theURL = "http://jojoo.net";

// 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=""+
"<html>"+
"<head>"+
"<title>"+title+"</title>"+
"</head>"+
"<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
"<frame name='top' src='"+theURL+"' scrolling=no>"+
"<frame name='bottom' src='about:blank' scrolling='no'>"+
"</frameset>"+
"</html>"
  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>

<!---------------------------------->
</body>
</html>

 

[返回上一页] [打印隐藏格式的浮动层(弹出的无任何边的窗口!)]
上一篇特效:隐藏层的打开关闭
下一篇特效:COOL菜单
     
| 关于本站 | 服务条款 | 友情连接 | 网站地图 | 联系方式 | 广告联系 |