美文网首页
CSS3圆角、阴影、rgba

CSS3圆角、阴影、rgba

作者: 暴走的金坤酸奶味 | 来源:发表于2018-09-13 07:51 被阅读0次

CSS3圆角

  • 设置某一个角的圆角,比如设置左上角的圆角:

  • border-top-left-radius:30px 60px;

  • 同时分别设置四个角: border-radius:30px 60px 120px 150px;

  • 设置四个圆角相同:

  • border-radius:50%;

CSS3阴影

  • box-shadow:h-shadow v-shadow blur spread color inset;
  • 分别设置阴影:水平偏移 垂直偏移 羽化大小 扩展大小 颜色 是否内阴影

rgba(新的颜色值表示法)

1、盒子透明度表示法:opacity:0.1;filter:alpha(opacity=10)(兼容IE);
2、rgba(0,0,0,0.1) 前三个数值表示颜色,第四个数值表示颜色的透明度


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>css3圆角 阴影 透明度</title>
    <style type="text/css">
        .box{
            width: 200px;
            height: 200px;
            border: 2px solid #000;
            background-color: gold;
            margin: 50px auto 0;
            /*border-top-left-radius: 100px 50px;左上角为椭圆圆角*/
            /*border-top-left-radius: 100px;
            border-top-right-radius: 100px;左、右上角为正圆圆角*/
            /*border-radius: 40px;曲率半径为40的圆角矩形*/
            /*border-radius: 20%;最大200px,20%即40px*/
            border-radius: 50%;/*正圆*/
        }
        .box1{
            width: 200px;
            height: 40px;
            background-color: gold;
            margin: 100px auto 0;
            /*水平偏移 垂直偏移 羽化大小 扩展大小 颜色*/
            box-shadow: 10px 10px 10px 0px #bfa;
        }
        .box2{
            width: 200px;
            height: 40px;
            background-color: gold;
            margin: 100px auto 0;
            /*水平偏移 垂直偏移 羽化大小 扩展大小 颜色 是否内阴影*/
            box-shadow: 0px 0px 20px 2px red inset;
        }

        body{
            background-color: cyan;
        }
        .box3{
            width: 200px;
            height: 200px;
            /*background: url(images/location_bg.jpg);*/
            background-color: gold;
            margin: 50px auto 0;
            border: 2px solid #000;
            border-radius: 50%;
            /*透明度30%,文字也透明了*/
            opacity: 0.3;
            filter: alpha(opacity=30);/*兼容IE*/
            text-align: center;
            line-height: 200px;
        }
        .box4{
            width: 200px;
            height: 200px;
            /*背景色变透明,但文字不会透明*/
            background-color: rgba(255,215,0,0.3);
            margin: 50px auto 0;
            /*边框透明*/
            border: 2px solid rgba(0,0,0,0.3);
            border-radius: 50%;
            text-align: center;
            line-height: 200px;
        }
    </style>
</head>
<body>
    <div class="box"></div>
    <div class="box1"></div>
    <div class="box2"></div>
    <div class="box3">床前明月光</div>
    <div class="box4">床前明月光</div>
</body>
</html>

相关文章

  • CSS3圆角、阴影、rgba

    CSS3圆角、阴影、rgba CSS3圆角 设置某一个角的圆角,比如设置左上角的圆角:border-top-lef...

  • CSS3过渡动画、圆角、阴影、透明度

    答辩面试题 CSS3的新特性: 1、CSS3圆角、阴影、rgba 2、CSS3 transition动画 3、CS...

  • 2018.10.25css3动画特效

    css3有哪些新增的特性?1,css权重 2,新增选择器 3,css3圆角,阴影,rgba(颜色表示法) ...

  • CSS3圆角、阴影、rgba

    CSS3圆角 设置某一个角的圆角,比如设置左上角的圆角: border-top-left-radius:30px ...

  • 动画、圆角、阴影、rgba

    CSS3 transition动画1、transition-property 设置过渡的属性,比如:width h...

  • 圆角、阴影、rgba、动画

    圆角 设置某一个角的圆角,比如设置左上角的圆角:border-top-left-radius:30px 60px;...

  • 08-css动画

    css3新增选择器 1、css3圆角设置某一个角的圆角,比如设计左上角的圆角。 2、rgba(新的颜色值表示法)1...

  • css3新增功能

    css权重 新增选择器 圆角 阴影 rgba transition动画 transform变换 animation...

  • 08_dayCSS动画

    CSS3新增的功能有:过渡和动画,阴影和圆角 css3过渡动画: css3都有哪些新增的东西 : 过度,动画,阴影...

  • CSS3:边框与圆角

    知识点: CSS3圆角CSS3盒阴影CSS3边界图片 一、CSS3圆角 border-radius属性 一个最多可...

网友评论

      本文标题:CSS3圆角、阴影、rgba

      本文链接:https://www.haomeiwen.com/subject/tomigftx.html