在 jQuery 中轻松地将一个元素定位在另一个元素上?
我需要使用 jQuery 将 div 放置在图像上。我可以使用 position:fixed
创建它,并使用顶部和左侧使用元素偏移来定位它,但它很糟糕,因为如果用户滚动,该元素将不会位于该元素的顶部。
还有其他想法吗?
I need to position a div over an image with jQuery. I can create it with using position: fixed
and use top and left to position it using elements offset, but it sucks because the element will not be on top of the element if user scrolls.
Any other ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在多个位置执行此操作,则可以执行以下操作:
如果您匹配内部/外部 div 上的
height
/width
样式属性,则内部< ;div>
位于之前,并且您为内部
提供了更高的 z-索引比图像高,它将与图像完美重叠。
您可以在此处查看实际操作的示例:http://jsfiddle.net/ZcBus/
If you're doing this multiple places, you can do this:
If you match the
height
/width
style attributes on the inner/ouer divs, the inner<div>
comes before the<img />
and you give the inner<div>
a higher z-index than the image, it'll perfectly overlap the image.You can see an example of this in action here: http://jsfiddle.net/ZcBus/
创建一个带有position:relative的容器div。然后将图像放置在 div 内,并将原始 div 放置为位置:绝对,但坐标相对于容器 div。例如,
您可以使用 jQuery 注入部分或全部标记,或者更改样式,但根本不必使用脚本。
Create a container div with position:relative. Then place your image inside the div, and also your original div as position:absolute, but in coordinates relative to the container div. eg
You can use jQuery to inject some or all of that markup, or change the style but you dont have to use script at all.