CSS中的负边界半径?

a0zr77ik  于 2023-03-20  发布在  其他
关注(0)|答案(5)|浏览(138)

我试着用CSS做一个div,看起来像这样:

我基本上是从这个开始的:

.player {
    width: 480px;
    height: 80px;
    border-radius: 40px;
}

没有太多代码的最简单的方法是什么?

kb5ga3dv

kb5ga3dv1#

这是yet another way of doing it,这次使用了一个放射状的背景图像,这样它就变得透明了,并且在Firefox和Chrome中都可以使用。

.player {
  width: 480px;
  height: 80px;
  border-radius: 40px;
  background-image: radial-gradient(circle at 38px 40px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 40px, blue 40px);
  color: #FFF;
}
<div class="player"></div>
ukqbszuj

ukqbszuj2#

您可以使用before伪元素来提供“剪切”

.player {
    width: 480px;
    height: 80px;
    border-radius:0 40px 40px 0;
    background-color:#0000FF;
    position:relative;    
    color:#FFF;
}

.player:before
{
    width: 80px;
    height: 80px;
    border-radius:0 40px 40px 0;
    background-color:#FFF;    
    display:inline-block;
    vertical-align: middle;
    margin-right: 10px;
    content: '';
}
<div class="player">Some Content</div>
nuypyhwy

nuypyhwy3#

.wrapper {
    width: 500px;
    height: 103px;
    background-color: red;
    padding-top: 15px;
}

.player {
    width: 480px;
    height: 83px;
    margin-left: 10px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    border: 1px solid black;
    border-left: none;
    background-color: blue;
    -webkit-mask-image: radial-gradient(circle at left, transparent 0, transparent 40px, black 41px);
}
<div class="wrapper"><div class="player"></div></div>
w8rqjzmb

w8rqjzmb4#

Jon P的答案几乎是这样的--但是before元素可以用来在主div的左边制作一个透明的圆圈,一个阴影可以产生想要的剪切效果。

body {
  /* You can change the background colour to verify that this is truly transparent */
  background-color: pink;
}

.player {
    /* Just a normal box */
    width: 480px;
    height: 80px;
    border-radius:0 40px 40px 0;
    background-color:#0000FF;
    position:relative;    
    color:#FFF;
   /* Move the box right so that we can see the cutout to the left */
    margin-left: 40px;
}

.player:before
{
    width: 80px;
    height: 80px;
    border-radius:0 40px 40px 0;
    background-color:transparent;    
    display:inline-block;
    vertical-align: middle;
    margin-right: 10px;
    content: '';
    /* This is the cutout: */
    box-shadow: 40px 0px #00f;
    position: relative;
    left: -80px;
}
<div class="player">Some Content</div>
epggiuax

epggiuax5#

我也是这么想的,但是我有了一个更好的方法,我用svg作为背景。它也有React更快的优点。我会把我的问题发到这里给其他人,他们也会有同样的问题。

* {
  padding: 0;
  margin: 0;
}

#sidebar {
    width: 500px;
    height: 100vh;
    background: url(https://svgshare.com/i/XiH.svg) center right;
    background-size: 150%;
}
<div id="sidebar"></div>

相关问题