如何将 div 旋转到特定坐标?
我有两个(或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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获取两个坐标之间的角度,您可以使用 Math.atan2,
然后您可以使用 CSS3 属性在 div 上设置正确的角度。
To get the angle between the two coordinates, you could use
Math.atan2
you could then use a CSS3 property to set the correct angle on the div.