如何创建锥形响应div

时间:2015-03-05 00:27:01

标签: css css-shapes clip-path

有没有人知道如何使用css创建一个具有倒锥形状响应宽度的div(参见附件代码片段)。此div也需要重复的背景图像(模式)。

我尝试使用clipPath:

#div {
	height: 100%;
	width: 100%;
	-webkit-clip-path: polygon(50% 90px, 100% 0%, 100% 100%, 0 100%, 0 0);
	clip-path: polygon(50% 25%, 100% 0, 100% 100%, 0 100%, 0 0);
background: blue;
  padding-top: 160px;
}
<div id="div"></div>

这在Safari和Chrome中运行良好,但在Mozilla,Opera或IE中无效。 有没有办法实现所有相关的浏览器?

任何帮助都将不胜感激。

2 个答案:

答案 0 :(得分:2)

使用linear-gradient值而不是固定角度。您也可以使用变换来制作该形状,但这需要JS使其具有响应性。

<强> Fiddle

&#13;
&#13;
body {
    background-color: blue;
    margin: 0;
    padding: 0;
}
div {
    height: 150px;
    width: 100%;
    position: relative;
}
div:after, div:before {
    content:"";
    position: absolute;
    height: inherit;
    width: 50%;
}
div:before {
    left: 0;
    background: -webkit-linear-gradient(to bottom left, white 50%, transparent 50%);
    background: -moz-linear-gradient(to bottom left, white 50%, transparent 50%);
    background: -o-linear-gradient(to bottom left, white 50%, transparent 50%);
    background: linear-gradient(to bottom left, white 50%, transparent 50%);
}
div:after {
    right: 0;
    background: -webkit-linear-gradient(to bottom right, white 50%, transparent 50%);
    background: -moz-linear-gradient(to bottom right, white 50%, transparent 50%);
    background: -o-linear-gradient(to bottom right, white 50%, transparent 50%);
    background: linear-gradient(to bottom right, white 50%, transparent 50%);
}
&#13;
<div></div>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

您可以将div设置为隐藏溢出,然后设置2个具有倾斜的伪元素,每半个一个

&#13;
&#13;
.test {
  width: 400px;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.test:after, .test:before {
  content: "";
  position: absolute;
  top: 0px;
  width: 50%;
  height: 100%;
}

.test:before {
  left: 0px;
  transform: skewY(15deg);
  transform-origin: top left;
  background: repeating-linear-gradient(-15deg, white 0px, lightblue 40px);

}
.test:after {
    right: 0px;
  transform: skewY(-15deg);
  transform-origin: top right;
  background: repeating-linear-gradient(15deg, white 0px, lightblue 40px);
  
 } 
&#13;
<div class="test"></div>
&#13;
&#13;
&#13;