我想创建一个形状,这我会形容为“逆循环”:
该图像是不准确的莫名其妙,因为黑线应沿div元素的外边框继续。
下面是我目前所面对的一个演示: http://jsfiddle.net/n9fTF/
是,甚至有可能与CSS
没有图像?
我想创建一个形状,这我会形容为“逆循环”:
该图像是不准确的莫名其妙,因为黑线应沿div元素的外边框继续。
下面是我目前所面对的一个演示: http://jsfiddle.net/n9fTF/
是,甚至有可能与CSS
没有图像?
(对于那些浏览器支持它 - 在FF和Chrome测试 - IE10,Safari浏览器应该也可以工作)。
一个“问题”与我原来的答复是其中一个没有,他们正在对一个坚实的背景的情况下。 此更新产生同样的效果,允许圆之间的透明的“差距”,这是逆缺口。
CSS
.inversePair {
border: 1px solid black;
display: inline-block;
position: relative;
height: 100px;
text-align: center;
line-height: 100px;
vertical-align: middle;
}
#a {
width: 100px;
border-radius: 50px;
background: grey;
z-index: 1;
}
#b {
width: 200px;
/* need to play with margin/padding adjustment
based on your desired "gap" */
padding-left: 30px;
margin-left: -30px;
/* real borders */
border-left: none;
-webkit-border-top-right-radius: 20px;
-webkit-border-bottom-right-radius: 20px;
-moz-border-radius-topright: 20px;
-moz-border-radius-bottomright: 20px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
/* the inverse circle "cut" */
background-image: -moz-radial-gradient(
-23px 50%, /* the -23px left position varies by your "gap" */
circle closest-corner, /* keep radius to half height */
transparent 0, /* transparent at center */
transparent 55px, /*transparent at edge of gap */
black 56px, /* start circle "border" */
grey 57px /* end circle border and begin color of rest of background */
);
background-image: -webkit-radial-gradient(-23px 50%, circle closest-corner, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 55px, black 56px, grey 57px);
background-image: -ms-radial-gradient(-23px 50%, circle closest-corner, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 55px, black 56px, grey 57px);
background-image: -o-radial-gradient(-23px 50%, circle closest-corner, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 55px, black 56px, grey 57px);
background-image: radial-gradient(-23px 50%, circle closest-corner, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 55px, black 56px, grey 57px);
}
花了比我预想得到的z索引工作(更多的努力,这似乎忽略了消极的z-index ),但是, 这给了一个很好的干净的外观 (在IE9,FF,Chrome浏览器测试):
HTML
<div id="a" class="inversePair">A</div>
<div id="b" class="inversePair">B</div>
CSS
.inversePair {
border: 1px solid black;
background: grey;
display: inline-block;
position: relative;
height: 100px;
text-align: center;
line-height: 100px;
vertical-align: middle;
}
#a {
width: 100px;
border-radius: 50px;
}
#a:before {
content:' ';
left: -6px;
top: -6px;
position: absolute;
z-index: -1;
width: 112px; /* 5px gap */
height: 112px;
border-radius: 56px;
background-color: white;
}
#b {
width: 200px;
z-index: -2;
padding-left: 50px;
margin-left: -55px;
overflow: hidden;
-webkit-border-top-right-radius: 20px;
-webkit-border-bottom-right-radius: 20px;
-moz-border-radius-topright: 20px;
-moz-border-radius-bottomright: 20px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
}
#b:before {
content:' ';
left: -58px;
top: -7px;
position: absolute;
width: 114px; /* 5px gap, 1px border */
height: 114px;
border-radius: 57px;
background-color: black;
}
我真的不能从图形中告诉如何圆润你想要的点,但这里有一个可能性: http://jsfiddle.net/n9fTF/6/
如果点需要更圆,你需要穿上两端某些圈子里,使他们与大铲融为一体。
这种方法使用它们通过IE9 +支持 CSS盒子阴影( canIuse )
DEMO
输出:
HTML:
<div id="a">
<div id="b"></div>
</div>
CSS:
#a{
overflow:hidden;
border-radius:20px;
position:relative;
display:inline-block;
}
#a:before, #a:after{
content:'';
width: 100px;
border-radius: 50%;
}
#a:before {
height: 100px;
float:left;
border: 1px solid black;
background: grey;
}
#a:after {
position:absolute;
left:14px; top:-6px;
height:114px;
box-shadow: 1px 0px 0px 0px #000, 110px 0px 0px 68px #808080;
background:none;
z-index:-1;
}
#b {
width: 200px;
height: 100px;
background:none;
margin-left:-15px;
border: 1px solid black;
border-left:none;
float:left;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
}
这是一个非常有趣的问题。 我最近张贴在如何做一个教程逆圆角半径的CSS(在这里) ,我认为这可能很容易地适应你的情况。
关键是要创建一个使用非常简单的概念产生逆边界的跨度 - 很厚边框。 并通过隐藏他们利用内部部分。 你叫除了提供我的脚本做的是我只使用右上角的一个再添边界半径的左上角。 请对准您想要绝对定位的项目左边的跨度,并相应增加跨度的高度/宽度,瞧你有你的逆边界半径 。
别人从我发现做它的地方...
的jsfiddle: http://jsfiddle.net/ajeN7/
而这样的问题: CSS3倒圆角
希望帮助!
引入绝对定位的无边界白圈,其坐落在偏移的灰色圆圈的后面。 您将需要设置黑眼圈的z索引,以确保它坐在上面的白色圆圈:
#c {
position: absolute;
border: 0;
left: 30px;
width: 100px;
height: 100px;
border-radius: 50px;
background: white;
}
演示。