I'm getting into 3D CSS, and I'm having trouble wrapping my head around this inconsistency.
After rotating around the Y-axis, making the "front" face the scene's right face, and the "left" face rotates into place becoming the scenes front face, rotating around either the X-axis or Z-axis rotates the cube around the Z-axis. Why does this happen?
To recreate the issue:
1.) Run the snippet
2.) Click Y-axis (+)
3.) Click Y-axis (+) again
4.) Click any of the X or Z axis buttons
Weird, right? or am I just missing something masterfully simple in the world of 3D transforms?
var rotation_degree = { 'X': 0, 'Y': 0, 'Z': 0 };
$(document).on ("click", "button", function (e)
{
var degree = parseInt ($(this).attr ("data-degree"));
var axis = $(this).attr ("data-axis");
// Animate on an unused property
$(".cube").css ("text-indent", rotation_degree[axis]);
$('.cube').animate (
{
textIndent: rotation_degree[axis] + degree
},
{
step: function (now,fx)
{
rotation_degree[axis] = now;
// Center cube in scene
var transform = "translateZ(-125px)";
// Add transform rotations in specific order: X, Y, Z
for (var key in rotation_degree)
{
// Skip loop if the property is from prototype
if (!rotation_degree.hasOwnProperty (key))
continue;
transform += (" rotate" + key + "(" + rotation_degree[key] + "deg)");
}
// console.log (transform);
// console.log ("--------------------------------------------------------------");
$(this).css ('transform', transform);
},
duration: 'slow'
},
'linear'
);
});
html, body {
width: 100%;
height: 100%;
}
.scene {
width: 250px;
height: 250px;
perspective: 250px;
background-color: rgb(0,0,0);
}
.cube {
width:100%;
height:100%;
position:relative;
transform-style:preserve-3d;
transform: translateZ(-125px);
text-indent: 0;
}
.face {
width: 100%;
height: 100%;
position: absolute;
background-color: rgba(3, 121, 255, 0.5);
color: #FFF;
line-height: 250px;
text-indent: 0;
text-align: center;
}
.front { transform: rotateY(0deg) translateZ(125px); }
.right { transform: rotateY(90deg) translateZ(125px); }
.left { transform: rotateY(-90deg) translateZ(125px); }
.back { transform: rotateY(180deg) translateZ(125px); }
.top { transform: rotateX(90deg) translateZ(125px); }
.bottom { transform: rotateX(-90deg) translateZ(125px); }
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="scene">
<div class="cube">
<div class="face front">front</div>
<div class="face right">right</div>
<div class="face left">left</div>
<div class="face back">back</div>
<div class="face top">top</div>
<div class="face bottom">bottom</div>
</div>
</div>
<button data-degree="45" data-axis="X">
X-Axis (+)
</button>
<button data-degree="-45" data-axis="X">
X-Axis (-)
</button>
<button data-degree="45" data-axis="Y">
Y-Axis (+)
</button>
<button data-degree="-45" data-axis="Y">
Y-Axis (-)
</button>
<button data-degree="45" data-axis="Z">
Z-Axis (+)
</button>
<button data-degree="-45" data-axis="Z">
Z-Axis (-)
</button>