是否有可能用CSS制作这个?

时间:2013-04-12 13:25:33

标签: html css css3 css-shapes

div with circle, encompassing the drop shadow

使用HTML / CSS有一个很好的方法吗?基本上是一个div,边缘有一个“凹凸”的圆圈。这部分很容易使用伪类,但我的问题是让阴影将它视为形状的一部分。

当我分别对圆圈应用阴影时,它无法可靠地工作。我知道有办法做到这一点..但我不确定浏览器的支持是什么。

你们建议什么是解决这个问题的最佳方法?谢谢!

5 个答案:

答案 0 :(得分:5)

你可以通过一堆CSS来接近这个。有关实例,请参阅this JSFiddle。但是,有一些缺点:

  • 在9以下的IE中支持不佳
  • 不像素完美,因为有些盒阴影重叠
  • 容器必须 position: relative(或absolute

CSS:

div {
    margin: 100px;
    width: 100px;
    height: 100px;
    box-shadow: 0 0 10px black;
    border-radius: 10px;
    position: relative;
}

div:before {
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    left: -20px;
    top: 30px;
    border-radius: 20px;
    box-shadow: 0 0 10px black;
    clip: rect(-10px, 20px, 50px, -10px);
}

答案 1 :(得分:2)

老实说,一个图像,如果你想让它在mozilla,safari和chrome上运行。它可以用css3完成,但我不推荐它。

答案 2 :(得分:2)

使用CSS进行此操作只会增加开销。我建议使用简单的背景图像。使用CSS3,您可以很好地控制定位,透明度等。

可能更重要的是,如果他们必须使用您的代码,它会为其他开发人员创建一层“混乱”。保持干净。如果需要显示图像,请使用图像。

答案 3 :(得分:1)

是的,你可以做到这一点,但这是一个很好的手动调整,以获得更容易用图像完成的事情。

基本上问题在于阴影,要解决这个问题,你必须使用定位和z索引创建一个元素三明治。您需要一个位于矩形元素后面的圆形元素,然后是矩形元素顶部的圆形元素的副本。然后是另一个使用CSS3属性的问题,如阴影和渐变,这将导致浏览器兼容性问题。

这是 jsFiddle example

显然,这个例子的问题是让梯度变得完美,我没有花太多时间。

#circ {
    border-radius: 40px;
    width:40px;
    height:40px;
    box-shadow: 0px 0px 10px #999;
    position: absolute;
    left: 37px;
    top: 77px;
    background: #fcfcfc;
    position:absolute;
    left: 40px;
    top:75px;
    /* Old browsers */
    background: -moz-linear-gradient(top, #fcfcfc 0%, #cccccc 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #cccccc));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fcfcfc 0%, #cccccc 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fcfcfc 0%, #cccccc 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fcfcfc 0%, #cccccc 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #fcfcfc 0%, #cccccc 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#cccccc', GradientType=0);
    /* IE6-9 */
    z-index: -1;
}
#rect {
    width:200px;
    height:80px;
    background: #fcfcfc;
    position:relative;
    left: 50px;
    top:50px;
    box-shadow: 0px 0px 10px #999;
    /* Old browsers */
    background: -moz-linear-gradient(top, #fcfcfc 0%, #cccccc 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #cccccc));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fcfcfc 0%, #cccccc 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fcfcfc 0%, #cccccc 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fcfcfc 0%, #cccccc 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #fcfcfc 0%, #cccccc 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#cccccc', GradientType=0);
    /* IE6-9 */
}

#circ2 {
    border-radius: 40px;
    width:40px;
    height:40px;
    position: absolute;
    left: 37px;
    top: 77px;
    background: #fcfcfc;
    position:absolute;
    left: 40px;
    top:75px;
        /* Old browsers */
    background: -moz-linear-gradient(top, #fcfcfc 0%, #cccccc 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #cccccc));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fcfcfc 0%, #cccccc 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fcfcfc 0%, #cccccc 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fcfcfc 0%, #cccccc 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #fcfcfc 0%, #cccccc 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#cccccc', GradientType=0);
    /* IE6-9 */
}

答案 4 :(得分:0)

您可以在css3中使用border-radius函数,但最好的方法是使用图像。

border-radius的一个例子:

HTML

<div id="wrap">
<div class="round">
    Border
</div>
</div>

CSS

html,body{
    background-color: #ccc;
    padding: 0;
    margin: 0;
}

#wrap{

    background-color: #fff;
    padding: 20px;
    width: 44%;
    margin: 20px;
    position: absolute;
    z-index: 1;
}

.round{
    width: 200px;
    padding: 20px;
    background-color: #fff;
    border-radius: 50px;
}

一个jsfiddle例子:

http://jsfiddle.net/RpE4G/