11

是否可以使用纯 CSS 创建具有四种不同颜色(每个季度一种)的圆圈?我想要这四个圆圈之一:

[不幸的是,我链接到的图像不再存在。请查看答案以了解我所追求的效果]

我可以想象使用具有四个 div 和边框半径的解决方案,但这是否可能仅使用一个 div 和一些花哨的 css3?

4

3 回答 3

15

由于您列出了 CSS3,因此您可以只使用边框和旋转变换来“修复”对齐方式:

div {
    border-radius: 50px;
    border-style: solid;
    border-width: 50px;
    border-bottom-color: red;
    border-left-color: green;
    border-right-color: blue;
    border-top-color: yellow;
    height: 0px;
    width: 0px;

    /* To ratate */
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

http://jsfiddle.net/k8Jj9/

于 2013-07-13T13:50:35.067 回答
12

CSS 将是:

div {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, blue, blue 100%), linear-gradient(135deg, green, green), linear-gradient(225deg, yellow, yellow) , linear-gradient(225deg, red, red);
    background-size: 50% 50%;
    background-position: 0% 0%, 0% 100%, 100% 0%, 100% 100%;
    background-repeat: no-repeat;
}

演示

并具有边界半径:

演示 2

替代方法

.quarters {
    width: 101px;
    height: 101px;
    border-radius: 50%;
    position: relative;
}

.quarters:after {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),                   
                linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6));
    background-size: 50% 100%, 100% 50%;
    background-position: 100% 0%, 0% 100%;
    background-repeat: no-repeat;
  
}

#red {
    background-color: red;
}
#blue {
    background-color: blue;
}
#green {
    background-color: green;
}
#yellow {
    background-color: yellow;
}

在 OP 图像行中,圆圈具有相同颜色的不同阴影,可以定义一个设置为覆盖基本 div 的类,它们都是半透明的。一旦定义了该类,您可以轻松地将其应用于不同的颜色元素,轻松获得相同的效果

演示 3

于 2013-07-13T13:33:03.920 回答
3

这个怎么样:

http://jsbin.com/uletik/1/edit

只有一个div。

div {
  height:100px;
  width:100px;
  border-radius:100px;
 background: -webkit-linear-gradient(left, grey, grey 50%, blue 50%, blue);
  overflow:hidden;
  position:relative;
}
div:after {
  content:"";
  height:50px;
  background-color:red;
  width:50px;
  display:block;
}
div:before {
  content:"";
  background-color:green;
  height:50px;
  width:50px;
  display:block;
  right:0;
  position:absolute;
}
于 2013-07-13T13:21:11.917 回答