Following on from Changing width/height to a CSS rotated div triggers top/left reposition I need some help to solve a CSS rotation and dynamic width/height.
I understand transform-origin and think I need to dynamically update it at the same time the width or height of the element is updated. I'm only interested in the technical solution, rather than any cross-browser cleverness and hence the demo only uses the -webkit prefix.
HTML
<div id="wrap">
<div id="rotated">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</div>
Width: <input id="width" type="range" min="20" max="400" step="1" value="200">
Height: <input id="height" type="range" min="20" max="400" step="1" value="100">
Angle: <input id="angle" type="range" min="0" max="360" step="1" value="0">
</div>
CSS
#rotated {
background:lightblue;
border:1px dotted #000;
height:100px;
width:200px;
position:absolute;
top:300px;
left:100px;
overflow:hidden;
}
#width, #height, #angle {
display:block;
margin-bottom:10px;
width:200px;
}
JavaScript
$('#width').change(function() {
$('#rotated').css({width:this.value + 'px'});
});
$('#height').change(function() {
$('#rotated').css({height:this.value + 'px'});
});
$('#angle').change(function() {
$('#rotated').css({'-webkit-transform': 'rotate(' + this.value + 'deg)'});
});
In the second demo, adding the CSS
#rotated {
-webkit-transform-origin: 100px 50px;
-webkit-transform: rotate(60deg);
}
and updating the value of the angle slider to 60
Angle: <input id="angle" type="range" min="0" max="360" step="1" value="60">
produces the correct result when modifying the width/height via the sliders, in that the element grows and shrinks in the x, y dimensions without moving position. However, rotating the element now no longer around the desired (centre point) origin.
I have tried some variations (mousedown, mousemove, change) on this which I thought would set the origin before the width/height is modified but the <div> is still shifting position.
$('#width, #height, #angle').change(function() {
$('#rotated').css({'-webkit-transform-origin': $('#width').val()/2 + 'px' + $('#height').val()/2 + 'px'});
});
I assume jQuery is applying the CSS changes at the same time, whereas I think that the origin needs updating before the width/height change.
Basically I want the shape to always rotate about the center point and to not move when modifying the width/height if the shape is already rotated.