CSS3匹配3d形状(立方体顶部)

onl*_*oon 0 3d shape css3

我在数学和几何方面都不擅长,所以如果有人可以帮我创建以下形状,我会很高兴:

形状

所以基本上形状存在于3个矩形中,我得到前两个完美的变换矩阵,但我不能得到最后一个匹配形状(参见上面的链接img)

JSFiddle,到目前为止我尝试过或看到下面的代码

HTML

<div class="shape">
  <div class="shape-rect-one"></div>
  <div class="shape-rect-two"></div>
  <div class="shape-rect-three"></div>
</div>?
Run Code Online (Sandbox Code Playgroud)

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;
}?
Run Code Online (Sandbox Code Playgroud)

Ana*_*Ana 6

你可以用更简单的方式完成它,只需要一个元素.

DEMO

结果:

6点明星

HTML:

<div class='piece'></div>
Run Code Online (Sandbox Code Playgroud)

相关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); }
Run Code Online (Sandbox Code Playgroud)