倾斜具有不同的值顶部和底部

时间:2013-05-22 21:59:48

标签: css css3 transform css-shapes skew

我想制作一个顶部偏斜-10度且底部为10度的形状,以产生如图所示的形状:

div skewed bottom and top

我似乎无法弄清楚如何做到这一点。

1 个答案:

答案 0 :(得分:1)

<强> Working Demo

这应该可以解决问题:

CSS

#test {
    width: 200px;
    height: 200px;
    -webkit-transition: all 300ms ease-in;
     background: black;
    position: relative;
}

#test:after, #test:before {
    display: block;
    content: "";
    color: transparent;
    width: 215px;
    height: 50px;
    background: white;
    position: absolute;
    left: -10px;
    bottom: -20px;
    -webkit-transform: rotate(12deg);
    -moz-transform: rotate(12deg);
}
#test:before {
    bottom: auto;
    top: -20px;
    -webkit-transform: rotate(-12deg);
    -moz-transform: rotate(-12deg);
}

HTML

<div id="test"></div>