• <bdo id='IKD6E'></bdo><ul id='IKD6E'></ul>

    1. <tfoot id='IKD6E'></tfoot>
    2. <small id='IKD6E'></small><noframes id='IKD6E'>

    3. <legend id='IKD6E'><style id='IKD6E'><dir id='IKD6E'><q id='IKD6E'></q></dir></style></legend>

      <i id='IKD6E'><tr id='IKD6E'><dt id='IKD6E'><q id='IKD6E'><span id='IKD6E'><b id='IKD6E'><form id='IKD6E'><ins id='IKD6E'></ins><ul id='IKD6E'></ul><sub id='IKD6E'></sub></form><legend id='IKD6E'></legend><bdo id='IKD6E'><pre id='IKD6E'><center id='IKD6E'></center></pre></bdo></b><th id='IKD6E'></th></span></q></dt></tr></i><div id='IKD6E'><tfoot id='IKD6E'></tfoot><dl id='IKD6E'><fieldset id='IKD6E'></fieldset></dl></div>

      CSS3径向渐变radial-gradient实现波浪边框和内倒角的方法

      本文将为大家详细讲解“CSS3径向渐变radial-gradient实现波浪边框和内倒角的方法”的完整攻略。

        <small id='frRGf'></small><noframes id='frRGf'>

        <legend id='frRGf'><style id='frRGf'><dir id='frRGf'><q id='frRGf'></q></dir></style></legend>
        • <bdo id='frRGf'></bdo><ul id='frRGf'></ul>
            <tbody id='frRGf'></tbody>
          <tfoot id='frRGf'></tfoot>
        • <i id='frRGf'><tr id='frRGf'><dt id='frRGf'><q id='frRGf'><span id='frRGf'><b id='frRGf'><form id='frRGf'><ins id='frRGf'></ins><ul id='frRGf'></ul><sub id='frRGf'></sub></form><legend id='frRGf'></legend><bdo id='frRGf'><pre id='frRGf'><center id='frRGf'></center></pre></bdo></b><th id='frRGf'></th></span></q></dt></tr></i><div id='frRGf'><tfoot id='frRGf'></tfoot><dl id='frRGf'><fieldset id='frRGf'></fieldset></dl></div>

                本文将为大家详细讲解“CSS3径向渐变radial-gradient实现波浪边框和内倒角的方法”的完整攻略。

                1. 什么是径向渐变?

                径向渐变(radial-gradient)是CSS3新增的一种渐变方式,它是从一个圆形、椭圆形或球形的中心开始改变颜色的过渡效果。径向渐变可以用来创建许多不同的特效,例如波浪边框和内倒角。

                2. 实现径向渐变波浪边框的方法:

                首先,创建一个div元素,并设置其class为“wave-border”,然后为该元素添加以下CSS样式:

                .wave-border {
                  position: relative;
                  width: 200px;
                  height: 200px;
                  padding: 20px;
                  border-radius: 50%;
                  background-color: #fff;
                  overflow: hidden;
                }
                
                .wave-border::before {
                  content: "";
                  position: absolute;
                  top: -20px;
                  left: -20px;
                  right: -20px;
                  bottom: -20px;
                  border: 10px solid transparent;
                  border-radius: 50%;
                  background: radial-gradient(circle at center, #fff 30%, #0099cc);
                }
                

                以上代码的解释如下:

                • position: relative:设置为相对定位,是为了后续的波浪层用绝对定位参照其父元素。
                • width: 200px; height: 200px;:设置容器的宽度和高度。
                • padding: 20px;:设置内边距,是为了避免波浪边框覆盖住容器的内容。
                • border-radius: 50%;:将容器变成一个圆形。
                • background-color: #fff;:设置背景颜色为白色。
                • overflow: hidden;:超出容器大小的内容将被裁剪掉。

                接下来,我们为这个div元素的::before伪元素添加边框样式:

                • content: "";:添加内容为空的伪元素。
                • position: absolute;:设置为绝对定位。
                • top: -20px; left: -20px; right: -20px; bottom: -20px;:将该元素的四个方向扩展到容器的外部,形成边框的效果。
                • border: 10px solid transparent;:将边框设置为10px实心透明的边框,因为我们将在后面使用径向渐变绘制波浪边框。
                • border-radius: 50%;:将该元素变成一个圆形,与容器的圆形相匹配。
                • background: radial-gradient(circle at center, #fff 30%, #0099cc);:设置径向渐变,将渐变的中心位置设在圆的中心位置,第一个颜色为#fff,渐变到30%时,颜色为#0099cc。

                这样,就完成了径向渐变波浪边框的实现。

                效果预览:https://codepen.io/anon/pen/bgxdoW

                3. 实现内倒角的方法:

                为了实现内倒角的效果,我们需要先创建一个div元素,并设置其class为“inner-corner”,然后为该元素添加以下CSS样式:

                .inner-corner {
                  position: relative;
                  width: 200px;
                  height: 200px;
                  background-color: #fff;
                }
                
                .inner-corner::before {
                  content: "";
                  position: absolute;
                  top: 10px;
                  left: 10px;
                  right: 10px;
                  bottom: 10px;
                  background: #0099cc;
                  border-radius: 50%;
                }
                
                .inner-corner::after {
                  content: "";
                  position: absolute;
                  top: 20px;
                  left: 20px;
                  right: 20px;
                  bottom: 20px;
                  background-color: #fff;
                }
                

                以上代码的解释如下:

                • position: relative:设置为相对定位,是为了后续的波浪层用绝对定位参照其父元素。
                • width: 200px; height: 200px;:设置容器的宽度和高度。
                • background-color: #fff;:设置背景颜色为白色。

                我们对这个div元素的::before伪元素添加样式:

                • content: "";:添加内容为空的伪元素。
                • position: absolute;:设置为绝对定位。
                • top: 10px; left: 10px; right: 10px; bottom: 10px;:将该元素的四个方向缩小10px,实现内倒角的效果。
                • background: #0099cc;:将背景颜色设置为淡蓝色。
                • border-radius: 50%;:将该元素变成一个圆形。

                现在,我们再为这个div元素的::after伪元素添加样式:

                • content: "";:添加内容为空的伪元素。
                • position: absolute;:设置为绝对定位。
                • top: 20px; left: 20px; right: 20px; bottom: 20px;:将该元素的四个方向再缩小20px,与前面的波浪层相匹配。
                • background-color: #fff;:将背景颜色设置为白色。

                这样,我们就完成了内倒角的实现。

                效果预览:https://codepen.io/anon/pen/YLMdVG

                以上是关于“CSS3径向渐变radial-gradient实现波浪边框和内倒角的方法”的完整攻略,希望能够对大家有所帮助。

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                下面是“背景图片自适应浏览器分辨率大小并自动拉伸全屏”的完整攻略。
                下面是详细讲解“简单但很实用的5个CSS属性”的完整攻略:
                以下是兼做美工之导航条制作过程分享的完整攻略:
                JS 控制 CSS 样式表的方式主要有两种:通过修改样式属性来修改元素样式,以及通过切换 CSS 类名来切换元素样式。下面分别给出具体的步骤和示例说明。
                实现首页动态视频背景,可以使用HTML5的video标签,下面是具体的示例代码和操作步骤:

                <small id='NkzTq'></small><noframes id='NkzTq'>

                    • <bdo id='NkzTq'></bdo><ul id='NkzTq'></ul>

                        <legend id='NkzTq'><style id='NkzTq'><dir id='NkzTq'><q id='NkzTq'></q></dir></style></legend>
                        <tfoot id='NkzTq'></tfoot>
                          <tbody id='NkzTq'></tbody>

                          <i id='NkzTq'><tr id='NkzTq'><dt id='NkzTq'><q id='NkzTq'><span id='NkzTq'><b id='NkzTq'><form id='NkzTq'><ins id='NkzTq'></ins><ul id='NkzTq'></ul><sub id='NkzTq'></sub></form><legend id='NkzTq'></legend><bdo id='NkzTq'><pre id='NkzTq'><center id='NkzTq'></center></pre></bdo></b><th id='NkzTq'></th></span></q></dt></tr></i><div id='NkzTq'><tfoot id='NkzTq'></tfoot><dl id='NkzTq'><fieldset id='NkzTq'></fieldset></dl></div>