内部曲线的框

时间:2015-12-13 13:27:58

标签: css html5 css3 svg css-shapes

我一直在努力创造一个内部弯曲的盒子'没有成功,我似乎没有在网上找到任何例子。任何人都可以帮助我使用CSS或SVG复制它吗?

enter image description here

1 个答案:

答案 0 :(得分:8)

鉴于形状背景是纯色而页面背景不是,您可以使用伪元素和具有高扩散半径的box-shadow创建形状。它是一个hackish解决方案,但可以在大多数浏览器上工作,因为盒子阴影有很好的支持。

div{
  position: relative;
  height: 300px;
  width: 150px;
  border-radius: 12px;
  overflow: hidden;
}
div:after{
  position: absolute;
  content: '';
  height: 30px;
  bottom: -15px;
  width: 100%;
  left: 0px;
  box-shadow: 0px 0px 0px 500px blue;
  border-radius: 12px;
}

body{
  background: linear-gradient(chocolate, brown);
  height: 100vh;
}
<div class='shape'></div>

使用SVG path元素也可以达到相同的效果,如下面的代码段所示。

div {
  height: 300px;
  width: 150px;
}
svg path {
  fill: blue;
}
body {
  background: linear-gradient(chocolate, brown);
  height: 100vh;
}
<svg viewBox='0 0 150 300' height='0' width='0'>
  <defs>
    <g id='shape'>
      <path d='M0,12 A12,12 0 0,1 12,0 L138,0 A12,12 0 0,1 150,12 L150,300 A12,12 0 0,0 138,288 L12,288 A12,12 0 0,0 0,300z' id='fill' />
    </g>
  </defs>
</svg>

<div class='shape'>
  <svg viewBox='0 0 150 300' preserveAspectRatio='none' vector-effect='non-scaling-stroke'>
    <use xlink:href='#shape' />
  </svg>
</div>