ホームページ > ウェブフロントエンド > CSSチュートリアル > 画像を使用せずに CSS で逆円効果を作成できますか?

画像を使用せずに CSS で逆円効果を作成できますか?

Mary-Kate Olsen
リリース: 2024-12-05 18:42:11
オリジナル
575 人が閲覧しました

Can I Create an Inverse Circle Effect in CSS Without Using Images?

CSS3 の形状: 「逆円」の錯覚をマスターする

ジレンマ: ネガティブな空間を彫刻する

次の形状を想像する「逆円」に似ていると困惑する可能性があります。あたかも黒い境界線が div の外縁に沿って消え、単色の背景に対して切り抜き効果が残っているかのようです。この偉業は CSS だけで可能ですか?それとも画像は必須ですか?

解決策 1 (オリジナル): ジオメトリと Z インデックスの操作

div と賢いものを慎重に配置することによってZ インデックスを使用すると、画像に頼ることなく、欺瞞的な逆円効果を実現できます。このソリューションは、負の Z インデックスと正確なオフセットを組み込むことで、IE9、Firefox、Chrome などのブラウザーでも錯視が持続するようにします。

ソリューション 2 (更新): 放射状の背景グラデーションを利用する

CSS3 の機能を強化することで、放射状の背景グラデーションが次のようなブラウザで実行可能なオプションとして登場します。 Firefox、Chrome、IE10、Safari。この革新的なアプローチにより柔軟性が高まり、背景が透明なシナリオでも逆円を作成できます。

実装

オリジナル解決策:

HTML:

<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;
} 
ログイン後にコピー

放射状グラデーション解決策:

HTML :オリジナルと同一ソリューション。

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);
}
ログイン後にコピー

以上が画像を使用せずに CSS で逆円効果を作成できますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート