1

我正在使用参数方程来围绕圆定位图像(如何计算圆圆周上的点?

我用简单的数学来做这件事:

// x,y position on circumference:
// x = a + r * cos(t)
// y = b + r * sin(t)

.position {
left: @a + ( @r *  cos(@t) );
top: @b + ( @r *  sin(@t) );
}

我遇到的问题是,这会将图像定位在左上角,而不是图像的中心,因此没有考虑到它所具有的高度和宽度的视觉偏移。尝试按 height/2, width/2 调整不起作用,因为每个图像的角度不同。

有没有一种简单的方法可以以这种方式定位图像,使其以 x,y 为中心?

4

2 回答 2

0
.position {
    left: @a + ( @r *  cos(@t) );
    top: @b + ( @r *  sin(@t) );

    margin-left: -@r;
    margin-top: -@r;
}

你可以这样做,而不是计算:

top:50%;
left:50%; 
position:absolute; 

margin-left:-@r;
margin-top:-@r;

小提琴演示

于 2013-10-28T13:48:03.127 回答
-1

减去半宽/高度确实有效

您说您尝试了半宽/高度计算,试图以某个角度参考将图像置于圆的圆周上(我理解您的问题)。似乎应该并且确实有效。看看这个...

示例小提琴

圆圈和图像颜色仅供视觉参考,但图像定位通过以下方式完成:

较少的

//define circle position
@r: 100px;
@x: 175px;
@y: 150px;
.setImage(@w, @h, @a) {
    //@a is angle from HORIZONTAL but moves clockwise 
    //(based on radians unless units are given)
    width: @w;
    height: @h;
    left: (@x + ( @r *  cos(@a) ) - (@w / 2));
    top: (@y + ( @r *  sin(@a) ) - (@h / 2));
}
.test1 {
  .setImage(40px, 40px, -35deg);
}
.test2 {
  .setImage(60px, 30px, -80deg);
}
.test3 {
  .setImage(90px, 20px, -150deg);
}
.test4 {
  .setImage(40px, 70px, -240deg);
}
.test5 {
  .setImage(20px, 90px, -295deg);
}

CSS 输出

.test1 {
  width: 40px;
  height: 40px;
  left: 236.9152044288992px;
  top: 72.64235636489539px;
}
.test2 {
  width: 60px;
  height: 30px;
  left: 162.36481776669305px;
  top: 36.5192246987792px;
}
.test3 {
  width: 90px;
  height: 20px;
  left: 43.39745962155612px;
  top: 90px;
}
.test4 {
  width: 40px;
  height: 70px;
  left: 104.99999999999996px;
  top: 201.60254037844385px;
}
.test5 {
  width: 20px;
  height: 90px;
  left: 207.26182617406997px;
  top: 195.630778703665px;
}

即使是旋转图像也能工作

假设您将图像设置为,transform-origin: center center那么即使图像以某个角度旋转,它也可以将它们保持在中心。

请参阅旋转图像示例小提琴

于 2013-10-29T15:41:36.700 回答