jquery 图像跟随光标在 div 内

发布于 2024-12-10 08:37:57 字数 144 浏览 0 评论 0原文

有没有人可以阻止它眨眼? 看起来它正在发生,因为它不断检查光标是在 div 内部还是外部?

http://jsfiddle.net/HHKgZ/

Is there anyone to prevent this from blinking?
it seems like its happening because it keeps checking to see if the cursor is inside or outside the div?

http://jsfiddle.net/HHKgZ/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风铃鹿 2024-12-17 08:37:57

<罢工>
你的代码没问题,只需将图像移动到 div 内即可。该位置混淆了 mouseenter/mouseleave 事件(在悬停中使用): http://jsfiddle.net/rkw79 /HHKgZ/9/

<div id="plz">
    <img id="image" src="http://images.pictureshunt.com/pics/m/mouse-8557.JPG"/>
</div>

更好的解决方案: http://jsfiddle.net/rkw79/HHKgZ/12/

只需输入 position:relative ; 到您的 #plz 元素中。


Your code is fine, just move the image inside the div. The location is confusing the mouseenter/mouseleave event (used in hover): http://jsfiddle.net/rkw79/HHKgZ/9/

<div id="plz">
    <img id="image" src="http://images.pictureshunt.com/pics/m/mouse-8557.JPG"/>
</div>

Better solution: http://jsfiddle.net/rkw79/HHKgZ/12/

Just put position: relative; into your #plz element.

梦里人 2024-12-17 08:37:57

最好使用 Jquery UI 可拖放 http://jqueryui.com/

Best use the Jquery UI draggable/droppable http://jqueryui.com/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文