如何将 div 旋转到特定坐标?

发布于 2024-12-29 10:54:27 字数 138 浏览 0 评论 0原文

我有两个(或3个)坐标。

它们是 2 个上部坐标:左和右

如何创建一个 div,其中左角具有左角的坐标,右角具有右角的坐标。

旋转应该根据这些坐标或这两个点之间的高度差创建,

我怎样才能实现这一点?

I have two (or 3) coordinates.

They are the 2 upper coordinates: left and right

How do I create a div where the left corner has the coordinate of the left one and the right corner the coordinate of the right one.

The rotation should be created from these coordinates or this height difference between these 2 points

How can I achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清醇 2025-01-05 10:54:27

要获取两个坐标之间的角度,您可以使用 Math.atan2,

var angle = Math.atan2(Y2 - Y1, X2 - X1);

然后您可以使用 CSS3 属性在 div 上设置正确的角度。

To get the angle between the two coordinates, you could use Math.atan2

var angle = Math.atan2(Y2 - Y1, X2 - X1);

you could then use a CSS3 property to set the correct angle on the div.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文