12

両側カットの楕円形で色々試しましたが出来ませんでしたここに画像の説明を入力

両側にカットのある楕円形のコードが必要です..

以下は私のコードです: -

.demo{
    width: 100%;
    height: 600px;
    background: white;
    -moz-border-radius: 100px / 50px;
    -webkit-border-radius: 100px / 178px;
    border-radius: 694px / 208px;

    z-index: 100;
    position: relative;
    }
4

5 に答える 5

20

これでよろしいですか ?

HTML

<div id="oval_parent">
    <div id="oval"></div>
</div>

CSS

#oval_parent{
    background:black;
    width:200px;
    height:120px;
    overflow:hidden;
}

#oval{
    width: 220px;
    height: 100px;
    margin:10px 0 0 -10px;  
    background: white;
    -moz-border-radius: 100px / 50px;
    -webkit-border-radius: 100px / 50px;
    border-radius: 100px / 50px;
}

デモ

于 2012-10-19T10:29:49.517 に答える
4

これを試して:

#oval-shape {
    width: 200px;
    height: 100px;
    background: blue;
    -moz-border-radius: 100px / 50px;
    -webkit-border-radius: 100px / 50px;
    border-radius: 100px / 50px;
}

高さに対する角の値の比率に注意してください。

デモ- http://jsfiddle.net/XDLVx/

于 2012-10-19T10:21:58.673 に答える
1

css の値を変更します。

#demo {
    width: 100%;
    height: 600px;
    background: white;
    -moz-border-radius: 50% / 250px;
    -webkit-border-radius: 40% / 250px;
    border-radius: 50% / 250px;

    z-index: 100;
    position: relative;
}
于 2012-10-19T10:25:45.407 に答える
0

以下に 2 つのバリエーションを示します。

方法 #01:

使用radial-gradient():

background: radial-gradient(ellipse 65% 40%, transparent 0, transparent 90%, black 90%);

body {
  background: linear-gradient(orange, red);
  padding: 0 20px;
  margin: 0;
}
.oval {
  background: radial-gradient(ellipse 65% 40%, transparent 0, transparent 90%, black 90%);
  height: 100vh;
}
<div class="oval">

</div>

方法 #02:

  1. :beforeまたは:after疑似要素でオーバーレイを作成します。
  2. を追加しborder-radiusます。
  3. 不要な領域を隠すために、親に大きく適用しbox-shadowます。overflow: hidden

body {
  background: linear-gradient(orange, red);
  padding: 0 20px;
  margin: 0;
}
.oval {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.oval:before {
  box-shadow: 0 0 0 500px #000;
  border-radius: 100%;
  position: absolute;
  content: '';
  right: -10%;
  left: -10%;
  top: 10%;
  bottom: 10%;
}
<div class="oval">

</div>

于 2016-12-21T12:13:31.817 に答える
0

すべての楕円形を表示するのに十分な高さで、幅が十分ではない別の div 内に配置し、overflow: hidden を設定します。中央に配置すると端が切れますが、横スクロールはできません。

于 2012-10-19T10:28:03.890 に答える