在修改宽度或高度时动态更新CSS3旋转元素的transform-origin

时间:2011-08-18 13:12:30

标签: jquery css css3 css-transforms

Changing width/height to a CSS rotated div triggers top/left reposition开始,我需要一些帮助来解决CSS旋转和动态宽度/高度。

我理解transform-origin并认为我需要在更新元素的宽度或高度的同时动态更新它。我只对技术解决方案感兴趣,而不是任何跨浏览器的聪明,因此the demo仅使用-webkit前缀。

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)'});
});

second demo中添加CSS

#rotated {
    -webkit-transform-origin: 100px 50px;
    -webkit-transform: rotate(60deg);
}

并将角度滑块的value更新为60

Angle: <input id="angle" type="range" min="0" max="360" step="1" value="60">

在通过滑块修改宽度/高度时产生正确的结果,因为元素在x, y维度中增长和收缩而没有移动位置。但是,现在旋转元素不再是所需(中心点)原点。

我已尝试过一些变化(mousedown,mousemove,change),我认为会在修改宽度/高度之前设置原点,但<div>仍然会移位。

$('#width, #height, #angle').change(function() {
    $('#rotated').css({'-webkit-transform-origin': $('#width').val()/2 + 'px' + $('#height').val()/2 + 'px'});
});

我假设jQuery同时应用了CSS更改,而我认为原点需要在宽度/高度更改之前更新

基本上我希望形状始终围绕中心点旋转,并且如果形状已经旋转,则在修改宽度/高度时不要移动。

1 个答案:

答案 0 :(得分:14)

FIDDLE DEMO!!!

我是第一个ganna告诉你为什么会发生这种情况。正如您所看到的那样,当您的div未旋转时,没有任何问题。那么为什么会出现这种奇怪的行为呢?

答案:因为你要求它......当你改变高度或宽度时,div的50%或中间点正在改变。因此,浏览器将div放置在未旋转DIV的新50%的位置,然后旋转它。

解决方法是将旋转的div包装在另一个具有固定宽度和高度且overflow:visible的div中(比如说“#wrapper”)。

然后将#rotated放在#wrapper中并在宽度或高度上进行更改,计算更改并转换#rotated div,使其始终位于#wrapper的中心(例如,对于宽度,翻译是 - (wrapWidth-newWidth)/ 2)。

然后你旋转包装纸瞧。

这是基于您的设置的代码:

<强> HTML:

<div id="wrap">
    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="60">
</div>
<div id="rotateWrap">
    <div id="rotated">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</div>
</div>

<强> CSS

#width, #height, #angle {
    position:relative;
    display:block;
    margin-bottom:10px;
    width:200px;
}

#rotateWrap{
    position:absolute;
    overflow:visible;
    height:100px;
    width:200px;
    top:200px;
    left:100px;
    outline:2px solid red;
    -webkit-transform-origin: 50% 50%;

}

#rotated {
    background:lightblue;
    position:relative;
    overflow:hidden;
    height:100px;
}

#wrap{
    position:absolute;
}

<强> JAVASCRIPT

wPrev=$("#rotateWrap").width();
hPrev=$("#rotateWrap").height();

$('#width').mousedown(function(){
}).change(function() {
    $("#rotated").width(newW=$(this).val())
        .css({left: -(newW-wPrev)/2 + "px"});
});

$('#height').mousedown(function(){
}).change(function() {
    $("#rotated").height(newH=$(this).val())
        .css({top: -(newH-hPrev)/2 + "px"});
});


$('#angle').change(function() {
    $("#rotateWrap").css({"-webkit-transform":"rotate("+$(this).val()+"deg)"});
});