js实现非常棒的弹出div

2019-11-29,,

本文实例为大家分享了一个非常棒的弹出div,供大家参考,具体内容如下

<html> 
<head> 
<meta charset="utf-8" />
  <title>LIGHTBOX EXAMPLE</title> 
  <style> 
   .black_overlay{ display: none; position: absolute; top: 0%; left: 0%; width: 100%; height: 100%; background-color: black; z-index:1001; -moz-opacity: 0.6; opacity:.60; filter: alpha(opacity=60); } 
   .white_content { display: none; position: absolute; top: 25%; left: 25%; width: 50%; height: 50%; padding: 16px; border: 16px solid orange; background-color: white; z-index:1002; overflow: auto; } 
   </style> 
   <script>
   function one(){
    document.getElementById('light').style.display='block';
    document.getElementById('fade').style.display='block'
   }
   function two(){
    document.getElementById('light').style.display='none';
    document.getElementById('fade').style.display='none'
   }
   </script> 
</head> 
<body> 
  <p>可以根据自己要求修改css样式
    <a href="javascript:void(0)" onclick="one()">点击这里打开窗口</a>
  </p> 
  <div id="light" class="white_content"> 
    This is the lightbox content. 
    <a href="javascript:void(0)" onclick="two()">Close</a>
  </div> 
  <div id="fade" class="black_overlay"> 
  </div> 
</body> 
</html> 

以上就是本文的全部内容,希望对大家有所帮助,希望大家继续关注北冥有鱼的最新内容。

您可能感兴趣的文章:

  • 基于javascript实现按圆形排列DIV元素(一)
  • javascript实现鼠标点击页面 移动DIV
  • JS控制div跳转到指定的位置的几种解决方案总结
  • 完美的js div拖拽实例代码
  • 基于JavaScript实现鼠标向下滑动加载div的代码
  • AngularJS动态生成div的ID源码解析
  • JS获取一个未知DIV高度的方法
  • JavaScript鼠标事件,点击鼠标右键,弹出div的简单实例
  • js动态添加的DIV中的onclick事件简单实例
  • js 动态添加元素(div、li、img等)及设置属性的方法
  • JS把内容动态插入到DIV的实现方法
  • 基于javascript实现按圆形排列DIV元素(二)

《js实现非常棒的弹出div.doc》

下载本文的Word格式文档,以方便收藏与打印。