我正在创建一个可平移和可缩放的UI,该UI要求子对象在屏幕上居中,但是我需要移动父对象以将子对象在屏幕上居中。

我的代码以1x放大倍数工作,但是当我应用css3变换来放大或缩小父代时,我的计算会出错。

如果将父元素css transform和js mult var的第1个和第4个元素更改为0.5或2,则计算将不可用。

任何帮助将不胜感激,因为我在这几天里一直在拔头发。

JS fiddle

Java脚本

$(function() {

$("#child").click(function(e) {

var mult = 1

$("#parent").css('left',
  (($(window).width() - $("#parent").width()) / 2) +
  ($("#parent").width() * mult) / 2 -
  ($("#child").position().left / mult) -
  ($("#child").width() * mult) / 2
);

$("#parent").css('top',
  (($(window).height() - $("#parent").height()) / 2) +
  ($("#parent").height() * mult) / 2 -
  ($("#child").position().top / mult) -
  ($("#child").height() * mult) / 2
);

})

});


的CSS

.parent {
  position: relative;
}

#child {
  border: 1px solid red;
  position: absolute;
  z-index: 3;
  width: 150px;
  height: 150px;
  top: 300px;
  left: 230px;
  background-color: cornflowerblue;
  color: white
}

#parent {
  position: relative;
  width: 700px;
  height: 900px;
  transform: matrix(1, 0, 0, 1, 0, 0);
  border: 1px solid red;
  background: pink
}


的HTML

<div class="parent">
  <div id="parent">
    <div class="testBox" id="child">CLICK ME</div>
  </div>
</div>

最佳答案

好的,我通常不写JS,但是我可以正常工作:

$(function() {

  $("#child").click(function(e) {

    var mult = 3

    $("#parent").css('left',
        (($(window).width()-$("#child").width()*mult) / 2) -
        $("#child").position().left +
        (mult-1) * $("#parent").width() / 2
    );

    $("#parent").css('top',
        (($(window).height()-$("#child").height()*mult) / 2) -
        $("#child").position().top +
        (mult-1) * $("#parent").height() / 2
    );
  })
});


以下是我认为可能使您感到困难的事情(对我来说很困难):


$("#child").position()给出变换后的位置,而$("#child").width()给出变换前的宽度。也就是说,使用您发布的CSS,但使用transform: matrix(2, 0, 0, 2, 0, 0);,然后使用$("#child").position().left == 460,但使用$("#child").width() == 150
设置$("#parent").css('left', ... )时,它是变换前的左偏移,并且变换围绕中心缩放。也就是说,使用您发布的CSS,但使用transform: matrix(1.5, 0, 0, 1.5, 0, 0);,如果您想将#parent的左边缘设置为与窗口的左边缘对齐,则必须将$("#parent").css('left', 175)而不是$("#parent").css('left', 0)设置为我最初预期。

10-07 17:43