CSS Gradient围绕着一点

时间:2014-04-04 09:19:02

标签: css css3 canvas

我想知道是否有人知道,是否可以使用CSS创建这样的渐变?我知道它可以使用画布完成但是没有可能吗?

enter image description here

2 个答案:

答案 0 :(得分:9)

这是我能够在不熬夜的情况下尽可能接近,但是是的,这是可能的! [只有诡计,但抱歉;我不知道如何创建一个合法的CSS3渐变环,但至少,这是纯HTML / CSS!]

JSFIDDLE

CSS3 Gradient Ring

CSS

[我为它凌乱而道歉]

.tophalf {
position:absolute;
width: 250px; height:125px;
-webkit-border-top-left-radius: 193px;
-webkit-border-top-right-radius: 193px;
-moz-border-radius-topleft: 193px;
-moz-border-radius-topright: 193px;
border-top-left-radius: 193px;
border-top-right-radius: 193px;

background: -moz-linear-gradient(left, #db9771 1%, #cc5f7f 51%, #c30380 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(1%,#db9771), color-stop(51%,#cc5f7f), color-stop(100%,#c30380));
background: -webkit-linear-gradient(left, #db9771 1%,#cc5f7f 51%,#c30380 100%);
background: -o-linear-gradient(left, #db9771 1%,#cc5f7f 51%,#c30380 100%);
background: -ms-linear-gradient(left, #db9771 1%,#cc5f7f 51%,#c30380 100%);
background: linear-gradient(to right, #db9771 1%,#cc5f7f 51%,#c30380 100%);
}

.inner {
 position: relative; z-index: 1;
 top: 20px; left: 20px;
 width: 210px; height: 210px;
 background-color: white;
 border-radius: 100%;
}

.bottomhalf {
position:absolute;
top:133px;
width: 250px; height:125px;
-webkit-border-bottom-right-radius: 193px;
-webkit-border-bottom-left-radius: 193px;
-moz-border-radius-bottomright: 193px;
-moz-border-radius-bottomleft: 193px;
border-bottom-right-radius: 193px;
border-bottom-left-radius: 193px;

background: -moz-linear-gradient(left, #db9771 1%, #edc552 51%, #ffec00 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(1%,#db9771), color-stop(51%,#edc552), color-stop(100%,#ffec00));
background: -webkit-linear-gradient(left, #db9771 1%,#edc552 51%,#ffec00 100%);
background: -o-linear-gradient(left, #db9771 1%,#edc552 51%,#ffec00 100%);
background: -ms-linear-gradient(left, #db9771 1%,#edc552 51%,#ffec00 100%);
background: linear-gradient(to right, #db9771 1%,#edc552 51%,#ffec00 100%);
}

HTML

<div class='container'>
   <div class='tophalf'></div>
   <div class='inner'></div>
   <div class='bottomhalf'></div>
</div>

我是怎么做到的?

为简短而简单,我将两个半圆放在一起,给每个半个不同的渐变,但保持左侧的起始颜色相同,确保&#39 ;接缝&#39;只会在一边。

然后,我在两个半圆的中心放置了一个白色的整圆,将所有内容隐藏在中间并成功创建了一个渐变环。

来源?

编辑:哎呀!没有Gradient Editor,我无法做到。

答案 1 :(得分:1)

为了方便...

修复该过渡部分...

#rb::before {
width: 100%;
height: 20%;
margin-top: -10%;
background-color: #cddc39;
}

#rb::after {
width: 20%;
height: 20%;
margin-left: -10%;
margin-top: 70%;
background-color: #ffeb3b;
}

详细信息:jsFiddle(https://jsfiddle.net/7kfuzwyc/3/

enter image description here