我在数学和几何方面都不擅长,所以如果有人可以帮我创建以下形状,我会很高兴:
所以基本上这个形状存在于3个矩形中,我得到前两个完美的变换矩阵,但我不能得到最后一个匹配形状(参见上面的链接img)
JSFiddle, what I tried so far or see code below
HTML
<div class="shape">
<div class="shape-rect-one"></div>
<div class="shape-rect-two"></div>
<div class="shape-rect-three"></div>
</div>
CSS
.shape {
perspective: 1000px;
}
.shape div {
width: 100px;
height: 100px;
opacity: 0.4;
background-color: #333;
}
.shape-rect-one {
z-index: 100;
transform: matrix(1, -0.40, 0, 1, 0, 0);
-webkit-transform: matrix(1, -0.40, 0, 1, 0, 0);
}
.shape-rect-two {
z-index: 200;
transform: matrix(1, -0.40, 0, 1, 0, 0);
-webkit-transform: matrix(1, 0.40, 0, 1, 0, 0);
}
.shape-rect-three {
z-index: 300;
}
答案 0 :(得分:6)
你可以用更简单的方式完成,只需要一个元素。
<强>结果强>:
<强> HTML 强>:
<div class='piece'></div>
相关的 CSS :
.piece {
width: 10em; height: 8.66em; /* 10*sqrt(3)/2 = 8.66 */
background: rgba(0,0,0,.5);
}
.piece {
position: relative;
transform: rotate(-30deg) skewX(30deg);
}
.piece:before, .piece:after {
position: absolute;
width: inherit; height: inherit;
background: inherit;
content: '';
}
.piece:before { transform: skewX(-30deg) skewX(-30deg); }
.piece:after { transform: skewX(-30deg) rotate(-60deg) skewX(-30deg); }
答案 1 :(得分:1)
这应该会形成钻石形状。
transform: matrix(-0.965, 0.45, -0.965, -0.45, 0, 0);
-webkit-transform: matrix(-0.965, 0.45, -0.965, -0.45, 0, 0);