5

带圆圈的 div,包含投影

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

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

你们会推荐什么是解决这个问题的最佳方法?谢谢!

4

5 回答 5

5

你可以用一堆 CSS 来接近这个。请参阅此 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);
}
于 2013-04-12T13:39:27.300 回答
2

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

于 2013-04-12T13:28:15.770 回答
2

用 CSS 做这个只会增加开销。我建议使用简单的背景图片。使用 CSS3,您可以很好地控制定位、透明度等。

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

于 2013-04-12T13:29:15.700 回答
1

是的,您可以这样做,但需要进行大量手动调整才能获得更容易使用图像完成的功能。

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

这是一个jsFiddle 示例

显然,这个例子的问题是让渐变完美地铺满,我没有花太多时间。

#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 */
}
于 2013-04-12T13:37:53.140 回答
0

您可以在 css3 中使用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/

于 2013-04-12T13:43:59.003 回答