css实现遮罩层,父div透明,子div不透明

随笔- 1021  文章- 1  评论- 24 

css实现遮罩层,父div透明,子div不透明

使用元素的opacity 属性,设置遮罩层的效果, 主要 样式是:background-color: #ooo; opacity:0.3;

1

2

3

4

<div style="width:500px; height:500px;position:fixed; top :0px;background-color:#000;opacity:0.3;text-align:center">

      <div style="float:right; width:100px;height:100%; z-index:10;line-height:500px;background-color:blue;opacity:1;">dfaaf

      div>

div>

  

css实现遮罩层,父div透明,子div不透明_第1张图片

原因分析: 使用css的opcity属性改变某个元素的透明度,但是其元素下的子元素的透明度也会被改变,即便重定义也没有用,不过有个方法可以实现,大家可以看看。

 可以使用一张透明的图片做背景可以达成效果,但是有没有更简单的方法呢?使用RGBA。

 

1

2

3

4

<div style="width:500px; height:500px;position:fixed; top :0px;background-color:#000;background: rgba(0, 0, 0, 0.5);text-align:center">

<div style="float:right; width:100px;height:100%; z-index:10;line-height:500px;background-color:blue;opacity:1;">dfaaf

div>

div>

  

解释:这是黑色半透明的代码(设置背景色 同时设置opacity(透明度,取值范围0-1))

     前三个值表示颜色的red,green,blue值

     最后一个表示alpha值,就是透明度值,不透明为1

     (支持IE8+以及所有现代浏览器)

父级div 使用rgba ,效果可以了,如下图;

css实现遮罩层,父div透明,子div不透明_第2张图片

 

 

怎么实现父级div透明,子div不透明呢?下面这个代码片段还可以参考:

原文: http://www.cnblogs.com/mxw09/archive/2011/09/27/2193238.html

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

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=utf-8" />

    <title>css外层DIV半透明内层div不透明-弹出层效果的实现【实例】title>

    <style type="text/css">

        

    style>

    <script language="javascript">

        function closeDiv(divId){

            document.getElementById(divId).style.display = 'none';

        }

        function displayDiv(divId){

            document.getElementById(divId).style.display = 'block';

        }

    script>

head>

<body>

<div style="width:400px; height:400px; position:relative; text-align:center;">

    <div class="tanchuang_wrap" id="aaaa">

        <div class="lightbox">div>

        <div class="tanchuang_neirong">

            <p><span onClick="closeDiv('aaaa')" style=" cursor:pointer;">关闭span>p>

            这里是弹窗内容

        div>

    div>

    <span onclick="displayDiv('aaaa')" style="cursor:pointer;">点击我span>

    <p>测试通过,兼容IE6.0、IE7.0、火狐3.6、遨游等各大浏览器p>

div>

body>

html>

  效果如下图:

css实现遮罩层,父div透明,子div不透明_第3张图片

你可能感兴趣的:(css实现遮罩层,父div透明,子div不透明)