码迷,mamicode.com
首页 > Web开发 > 详细

第三节 css3动画之透明

时间:2020-03-14 16:44:52      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:width   rgba   lan   col   透明度   filter   html   code   body   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        body{
            background-color: gold;
        }

        .box{
            font-size: 30px;
            width: 300px;
            height: 150px;
            background-color: #fff;
            color: green;
            
            /* 普通元素透明的完整写法,这个写法会带着盒子里的文字一起变透明 */
            opacity: 0.5;  /* 设置透明度 */
            filter: alpha(opacity=30)  /* 为了兼容IE */
        }
        .box2{
            font-size: 30px;
            width: 300px;
            height: 150px;
            margin-top: 50px;
            background-color: rgba(0,0,0,0.3);  /* 这个写法只会让盒子背景变透明,里面的文本不会*/
            color: green;
        }
    </style>
</head>
<body>
    <div class="box">这是一个div</div>
    <div class="box2">这是一个div</div>
    
</body>
</html>

 

第三节 css3动画之透明

标签:width   rgba   lan   col   透明度   filter   html   code   body   

原文地址:https://www.cnblogs.com/kogmaw/p/12492430.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!