html - 具有非等距子项的 css 等距 View

标签 html css css-transforms isometric

我正在使用 transform: rotateX(60deg) rotateY(0deg) rotateZ(-45deg); 使元素看起来像是处于等轴测视角。我想知道我如何才能恢复对某些 child 的影响,以便他们共享协调系统但正常对齐。我试着让 children 以同样的方式向后旋转,但似乎效果不同。有什么想法吗?

.iso {
  transform: rotateX(60deg) rotateY(0deg) rotateZ(-45deg);
  transform-style: preserve-3d;


  position: relative;
  height: 20rem;
  width: 20rem;
  text-align: center;
  margin: 0 auto;
  background-color: tomato;
  box-sizing: border-box;
  padding: 2rem;
}

.marker {
  position: absolute;
  left: 10rem;
  top: 15rem;
  transform: rotateX(-60deg) rotateY(0deg) rotateZ(45deg);
}
<div class="iso">
  <h3>I'm also iso aligned</h3>

  <div class="marker">
    <svg xmlns='http://www.w3.org/2000/svg' height='30' width='27' viewBox='0 0 25 30'><path stroke="#FFFFFF" stroke-width="2" fill='29434e' d='M13.6363636,0.272727273 C16.6363636,0.272727273 19.6363636,1.63636364 21.8181818,3.81818182 C24,6.27272727 25.3636364,9 25.3636364,12.2727273 C25.3636364,15.5454545 24,19.0909091 21.8181818,21.2727273 L13.6363636,29.7272727 L5.45454545,21.2727273 C3.27272727,19.0909091 1.90909091,15.8181818 1.90909091,12.2727273 C1.90909091,9 3,6.27272727 5.45454545,3.81818182 C7.63636364,1.63636364 10.6363636,0.272727273 13.6363636,0.272727273 Z'/></svg></div>
</div>

最佳答案

您应该更改 transform-origin 使其位于底部,然后使用如下相反的转换。您不仅应该反转值,还应该反转顺序。

添加了一个额外的未转换的制造商以与之进行比较

.iso {
  transform: rotateX(60deg) rotateY(0deg) rotateZ(-45deg);
  transform-style: preserve-3d;


  position: relative;
  height: 20rem;
  width: 20rem;
  text-align: center;
  margin: 0 auto;
  background-color: tomato;
  box-sizing: border-box;
  padding: 2rem;
}

.marker {
  position: absolute;
  left: 10rem;
  top: 15rem;
  transform: rotateZ(45deg) rotateY(0deg) rotateX(-60deg);
  transform-origin:bottom center;
}
.compare {
  position:absolute;
  left: 15rem;
  top: 10rem;
}
<div class="iso">
  <h3>I'm also iso aligned</h3>

  <div class="marker">
    <svg xmlns='http://www.w3.org/2000/svg' height='30' width='27' viewBox='0 0 25 30'><path stroke="#FFFFFF" stroke-width="2" fill='29434e' d='M13.6363636,0.272727273 C16.6363636,0.272727273 19.6363636,1.63636364 21.8181818,3.81818182 C24,6.27272727 25.3636364,9 25.3636364,12.2727273 C25.3636364,15.5454545 24,19.0909091 21.8181818,21.2727273 L13.6363636,29.7272727 L5.45454545,21.2727273 C3.27272727,19.0909091 1.90909091,15.8181818 1.90909091,12.2727273 C1.90909091,9 3,6.27272727 5.45454545,3.81818182 C7.63636364,1.63636364 10.6363636,0.272727273 13.6363636,0.272727273 Z'/></svg></div>
</div>
<!-- to compare with -->
<svg class="compare" xmlns='http://www.w3.org/2000/svg' height='30' width='27' viewBox='0 0 25 30'><path stroke="#FFFFFF" stroke-width="2" fill='29434e' d='M13.6363636,0.272727273 C16.6363636,0.272727273 19.6363636,1.63636364 21.8181818,3.81818182 C24,6.27272727 25.3636364,9 25.3636364,12.2727273 C25.3636364,15.5454545 24,19.0909091 21.8181818,21.2727273 L13.6363636,29.7272727 L5.45454545,21.2727273 C3.27272727,19.0909091 1.90909091,15.8181818 1.90909091,12.2727273 C1.90909091,9 3,6.27272727 5.45454545,3.81818182 C7.63636364,1.63636364 10.6363636,0.272727273 13.6363636,0.272727273 Z'/></svg>

相关问题以更好地理解顺序的重要性:

Simulating transform-origin using translate

Why does order of transforms matter? SVG rotate/scale doesn't give the same result as scale/rotate

关于html - 具有非等距子项的 css 等距 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55556729/

相关文章:

javascript - div跟随滚动

jquery - 是否可以控制 jQuery UI Sortable 助手的溢出?

html - 3D立方体中的css3 transform-origin问题

javascript - 如果禁用了 javascript,如何隐藏未被 <noscript> 标记包围的某些 html?

html - 当 li 的边框从 1px 增加到 2px 时,如何防止 li 的高度发生变化?

javascript - 使用javascript设置html页面的标题

scale - 使用 CSS Transform Scale 匹配父元素

Css 动画多状态

html - 在单元格内设置表格高度

javascript - 无法根据 JSON API 变量更改 HTML 背景