gpt4 book ai didi

html - 如何将对象附加到图像上的固定位置?

转载 作者:太空宇宙 更新时间:2023-11-04 12:57:58 25 4
gpt4 key购买 nike

到现在为止,我只是想出了如何使用页面坐标将对象放置到固定位置。
这是问题所在:

当我向上/向下/向左/向右移动图像(对象是图像上您可以点击的点)时,这些点停留在旧位置。

那么有没有办法从图像中给他们坐标呢?然后我可以四处移动 img,这些点会留在原处,不是吗?

这些是我的积分 (CSS):

div.point {
border-radius: 50%;
width: 28px;
height: 28px;
background: #7ab51d;
border: 3px solid white;
position: fixed;
z-index:1000;
cursor: pointer;
}

这些是我如何定位它们的:

<div id="Restroom_Water" class="point" style="top:380px;left:1000px;" onmouseover="$('#Restroom_text_Water').show();" onmouseout="$('#Restroom_text_Water').hide();"></div>

最佳答案

改变位置属性:

div.point{
position: relative;
}

这意味着点对象的像素位置是相对于父容器(在本例中是您的图像)。

This article很好地解决了定位问题。

关于html - 如何将对象附加到图像上的固定位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25674807/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com