免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1384 | 回复: 0
打印 上一主题 下一主题

渐隐半透明效果 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-08-29 17:29 |只看该作者 |倒序浏览

渐隐半透明效果
需要的图片:
  


!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>无标题文档/title>
script src="js/jquery-1.3.2.js">/script>
script>
   
   $(document).ready(function(){
      var station = false; //隐藏层的状态
     $("#show").click(function(){
     if(station==false){
         
         $(".backgroundDiv").css({"opacity":"0.5"}).fadeIn('normal');
            
             var scrollWidth = document.documentElement.clientWidth;
             var scrollHeight = document.documentElement.clientHeight;
             var divWidth = $(".info").width();
             var divHeight = $(".info").height();
             var divLeft = scrollWidth/2-divWidth/2;
             var divTop = scrollHeight/2-divHeight/2;
             $(".info").css({"position":"absolute","top":divTop,"left":divLeft}).fadeIn('normal');
         station=true;
         }else{
         alert("状态错误!")
         }
         
     });
     
     $("#close").click(function(){
     if(station==true){
         $(".info").fadeOut('normal');
            $(".backgroundDiv").fadeOut('normal');
            station =false;
         }
     });
   
   });
/script>
style>
  .backgroundDiv{ width:100%; height:100%; display:none; z-index:10; background-color:#333333; position:absolute; top:0px; left:0px;}
  .info{ width:400px; height:300px; background-color:#FFFFFF; border:5px solid #0066FF; display:none; position:absolute; left:0px; top:0px; z-index:11}
  #closeDiv{ float:right; width:22px; height:22px; margin-top:10px; margin-right:10px;}
  .close{ float:right}
/style>
/head>
body>
    center>
       img src="images/opacity.jpg" />
       div>
          button id="show">press me/button>
       /div>
    /center>
   
    div class="backgroundDiv"> sss/div>
   
    div class="info">
       div id="closeDiv">
         img id="close" src="images/close.jpg" width="22" />
       /div>
       img src="images/opacity.jpg" width="400px"/>
    /div>
/body>
/html>
完整实例:

文件:
半透明背景层.rar
大小:
158KB
下载:
下载


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/93876/showart_2041189.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP