web-dev-qa-db-ja.com

CSS 3形状:「逆円」または「切り抜き円」

「逆円」と表現する形を作成したい:

CSS Shape

黒い線がdiv要素の外側の境界に沿っている必要があるため、画像は不正確になります。

ここに私が現在持っているもののデモがあります: http://jsfiddle.net/n9fTF/

画像なしでCSSを使用しても可能ですか?

40
Alp

更新:CSS3放射状背景グラデーションオプション

(FFとChromeでテストされたIE10をサポートするブラウザーでは、Safariも動作するはずです)。

私の元の答えの1つの「問題」は、彼らが取り組んでいる確固たる背景を持っていない状況です。このアップデートは、円とその逆カットアウトの間の透明な「ギャップ」を可能にする同じ効果を作成します。

フィドルの例を参照

[〜#〜] 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-indexを機能させるために予想以上に多くの労力を費やしました( これは負の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;
} 
53
ScottS

私はあなたの図面からあなたがポイントをどのくらい丸くしたいのか本当に分かりませんが、ここに1つの可能性があります: http://jsfiddle.net/n9fTF/6/

ポイントをより丸める必要がある場合は、端にいくつかの円を配置して、それらが大きなスクープに溶け込むようにする必要があります。

8
Chris Fletcher

異なるアプローチ:ボックスシャドウ

このアプローチはIE9 +でサポートされている] CSSボックスシャドウを使用しますcanIuse

[〜#〜] demo [〜#〜]

出力:

CSS shape with inset curve using box-shadows

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;
}
5
web-tiki

これは非常に興味深い質問です。私は最近 CSSの逆ボーダー半径(ここ) の作成方法に関するチュートリアルを投稿しました。

トリックは、非常にシンプルなコンセプト-非常に厚いボーダーを使用して、逆ボーダーを生成するスパンを作成することです。そして、内側のセクションを非表示にして使用します。提供されているスクリプトに加えて必要なことは、右上のみを使用しているため、左上隅に別のborder-radiusを追加することです。絶対配置によって、スパンを目的のアイテムの左側に揃え、スパンの高さ/幅を適宜増やし、 inverse border-radius を作成します。

1
Jon Mifsud

灰色の円の後ろにオフセットで配置された、絶対位置のボーダーレスの白い円を導入します。暗い円のz-indexを設定して、それが白い円の上にあることを確認する必要があります。

#c {
    position: absolute;
    border: 0;
    left: 30px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: white;
}

デモ

0
karim79

他の誰かが私が見つけたものからどこかでそれをしました...

JSFiddle: http://jsfiddle.net/ajeN7/

そして質問: CSS3 Inverted Rounded Corner

うまくいけば、それが役立ちます!

0
Rick Donohoe