使用Javascript/AngularJs将按钮放置在图像上特定的(x,y)位置可以通过以下步骤实现:
<div id="container">
<img src="image.jpg" id="image">
<button id="button">按钮</button>
</div>
#container {
position: relative;
}
#image {
position: absolute;
top: 0;
left: 0;
}
#button {
position: absolute;
}
var button = document.getElementById("button");
button.style.left = x + "px";
button.style.top = y + "px";
其中,x和y分别代表按钮在图像上的水平和垂直位置,单位为像素。
这样,按钮就会被放置在图像上特定的(x,y)位置。
领取专属 10元无门槛券
手把手带您无忧上云