js当前页面登录注册框,固定div,底层阴影的实例代码


Posted in Javascript onOctober 04, 2016

这是一个实例,保存代码为html文件运行试试吧。兼容火狐、ie6、ie7、ie8、Chrome等。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>JS当前页面登录注册框,固定DIV,底层阴影 - 三水点靠木</title>
<!--
一个按钮
点击之后 显示一个div
div要水平 垂直居中
当我浏览器高度 宽度变化的时候
div依然水平 垂直居中
点击遮罩层,浮动层隐藏
知识点:
1.如何用css控制div水平垂直居中
2.如何用js取得浏览器高度宽度
3.如何控制resize事件-->
<style type="text/css">
.hidden{ display:none}
/*评论浮动层*/
#smallLay{width:498px; height:100px;padding:4px 10px 10px;background-color:#FFFFFF;border:1px solid #05549d;color:#333333;line-height:24px;text-align:left;-webkit-box-shadow:5px 2px 6px #000;-moz-box-shadow:3px 3px 6px #555;}
</style>
</head>
<script type="text/javascript">
  //判断浏览器ie6创建的div的样式和非ie6创建的div的样式
  //创建div
  function showid(idname) {
    var isIE = (document.all) ? true : false;
    var isIE6 = isIE && ([/MSIE (\d)\.0/i.exec(navigator.userAgent)][0][1] == 6);
    var newbox = document.getElementById(idname);
    newbox.style.zIndex = "9999";
    newbox.style.display = "block"
    newbox.style.position = !isIE6 ? "fixed" : "absolute";
    newbox.style.top = newbox.style.left = "50%";
    newbox.style.marginTop = -newbox.offsetHeight / 2 + "px";
    newbox.style.marginLeft = -newbox.offsetWidth / 2 + "px";
    var jihualayer = document.createElement("div");
    jihualayer.id = "jihualayer";
    jihualayer.style.width = jihualayer.style.height = "100%";
    jihualayer.style.position = !isIE6 ? "fixed" : "absolute";
    jihualayer.style.top = jihualayer.style.left = 0;
    jihualayer.style.backgroundColor = "#000";
    jihualayer.style.zIndex = "9998";
    jihualayer.style.opacity = "0.6";
    document.body.appendChild(jihualayer);
    var sel = document.getElementsByTagName("select");
    for (var i = 0; i < sel.length; i++) {
      sel[i].style.visibility = "hidden";
    }
    function jihualayer_iestyle() {
      jihualayer.style.width = Math.max(document.documentElement.scrollWidth, document.documentElement.clientWidth)
+ "px";
      jihualayer.style.height = Math.max(document.documentElement.scrollHeight, document.documentElement.clientHeight) +
"px";
    }
    function newbox_iestyle() {
      newbox.style.marginTop = document.documentElement.scrollTop - newbox.offsetHeight / 2 + "px";
      newbox.style.marginLeft = document.documentElement.scrollLeft - newbox.offsetWidth / 2 + "px";
    }
    if (isIE) { jihualayer.style.filter = "alpha(opacity=60)"; }
    if (isIE6) {
      jihualayer_iestyle()
      newbox_iestyle();
      window.attachEvent("onscroll", function () {
        newbox_iestyle();
      })
      window.attachEvent("onresize", jihualayer_iestyle)
    }
    jihualayer.onclick = function () {
      newbox.style.display = "none"; jihualayer.style.display = "none"; for (var i = 0; i < sel.length; i++) {
        sel[i].style.visibility = "visible";
      } 
    }
  }
</script>
<body>
<div style="width:200px; height:100px;"></div>
<input name="" type="button" id="showbtn" value="点击显示" onclick="showid('smallLay')" />
<!--收藏浮层开始-->
<div id="smallLay" style="display:none" >
这<a href="http://jihua.cnblogs.com" style="text-decoration:none; color:Gray;">是</a>悬浮层
</div>
<!--收藏浮层结束-->
<div id="a" style="height:1000px;">这<a href="http://jihua.cnblogs.com" style="text-decoration:none; color:Black;">是</a>普通层</div>
</body>
</html>

以上就是小编为大家带来的js当前页面登录注册框,固定div,底层阴影的实例代码全部内容了,希望大家多多支持三水点靠木~

Javascript 相关文章推荐
比较简单实用的使用正则三种版本的js去空格处理方法
Nov 18 Javascript
JavaScript在浏览器标题栏上显示当前日期和时间的方法
Mar 19 Javascript
JS代码防止SQL注入的方法(超简单)
Apr 12 Javascript
JavaScript实现url参数转成json形式
Sep 25 Javascript
Bootstrap学习笔记 轮播(Carousel)插件
Mar 21 Javascript
vue+vuecli+webpack中使用mockjs模拟后端数据的示例
Oct 24 Javascript
Vue组件的使用教程详解
Jan 05 Javascript
微信小程序实现折叠与展开文章功能
Jun 12 Javascript
详解基于Vue-cli搭建的项目如何和后台交互
Jun 29 Javascript
在vue中v-bind使用三目运算符绑定class的实例
Sep 29 Javascript
JavaScript中CreateTextFile函数
Aug 30 Javascript
Vue与React的区别和优势对比
Dec 18 Vue.js
总结Javascript中数组各种去重的方法
Oct 04 #Javascript
Javascript中arguments对象的详解与使用方法
Oct 04 #Javascript
js判断浏览器是否支持严格模式的方法
Oct 04 #Javascript
浅谈jquery高级方法描述与应用
Oct 04 #Javascript
vue.js中$watch的用法示例
Oct 04 #Javascript
Angularjs实现带查找筛选功能的select下拉框示例代码
Oct 04 #Javascript
用jquery快速解决IE输入框不能输入的问题
Oct 04 #Javascript
You might like
PHP的可变变量名的使用方法分享
2012/02/05 PHP
php操作xml
2013/10/27 PHP
漂亮的提示信息(带箭头)
2007/03/21 Javascript
flash javascript之间的通讯方法小结
2008/12/20 Javascript
JavaScript 直接操作本地文件的实现代码
2009/12/01 Javascript
jquery URL参数判断,确定菜单样式
2010/05/31 Javascript
基于jquery的拖动布局插件
2011/11/25 Javascript
jQuery获得内容和属性示例代码
2014/01/16 Javascript
JS制作手机端自适应缩放显示
2015/06/11 Javascript
jquery实现网页的页面平滑滚动效果代码
2015/11/02 Javascript
jQuery数组处理函数整理
2016/08/03 Javascript
jQuery EasyUI中的日期控件DateBox修改方法
2016/11/09 Javascript
Vue添加请求拦截器及vue-resource 拦截器使用
2017/11/23 Javascript
jsonp实现百度下拉框功能的方法分析
2019/05/10 Javascript
JS求解两数之和算法详解
2020/04/28 Javascript
python为tornado添加recaptcha验证码功能
2014/02/26 Python
详解python 字符串和日期之间转换 StringAndDate
2017/05/04 Python
Python使用pickle模块储存对象操作示例
2018/08/15 Python
Python实现多级目录压缩与解压文件的方法
2018/09/01 Python
python根据url地址下载小文件的实例
2018/12/18 Python
Python+OpenCV图片局部区域像素值处理详解
2019/01/23 Python
详解python实现小波变换的一个简单例子
2019/07/18 Python
浅谈Python 递归算法指归
2019/08/22 Python
Python3如何对urllib和urllib2进行重构
2019/11/25 Python
python生成xml时规定dtd实例方法
2020/09/21 Python
使用CSS禁止textarea调整大小功能的方法
2015/03/13 HTML / CSS
css3利用transform变形结合事件完成扇形导航
2020/10/26 HTML / CSS
菲律宾优惠券网站:MetroDeal
2019/04/12 全球购物
总裁岗位职责
2013/12/04 职场文书
工程采购员岗位职责
2014/03/09 职场文书
售后求职信范文
2014/03/15 职场文书
大学生就业意向书范文
2014/04/01 职场文书
努力学习演讲稿
2014/05/10 职场文书
高中升旗仪式演讲稿
2014/09/09 职场文书
保护环境的宣传语
2015/07/13 职场文书
python神经网络编程之手写数字识别
2021/05/08 Python