jquery 偏移量和图像
我试图相对于图像元素定位 div 。问题是,图像需要一段时间才能加载,并且我正在获取图像的替代文本的偏移坐标。我使用jquery的offset方法来获取图像的位置,用jquery的ready()方法调用。
我尝试使用绑定到图像的 load() 方法(并删除在 read() 方法上进行的定位),但是 div 没有正确定位,甚至没有按照图像的替代文本的坐标定位。
有什么想法吗?帮助?
im trying to position a div relative to an image element. problem is, the image takes a while to load, and i am getting the offset coordinates of the image's alt text. im using the jquery's offset method to get the position of the image, called with jquery's ready() method.
i've tried using the load() method bound to the image (and removing the positioning made from on the ready() method) but the div does not get positioned correctly, not even positioned following the coordinates of the image's alt text.
any ideas? help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个。在设置 div 宽度的函数中,创建 n 个图像对象,如下所示:
然后,当加载图像时,代码将执行。加载图像两次也不会有问题。其中之一(以最后加载的为准)将基于缓存的版本。
Try this. In your function where you're setting the width of the div, create n image object like so:
then, when the image is loaded, the code will execute. You also should not have problems with loading the image twice. One of them (whichever is loaded last) will be based off of the cached version.