jquery 图像跟随光标在 div 内
有没有人可以阻止它眨眼? 看起来它正在发生,因为它不断检查光标是在 div 内部还是外部?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
<罢工>
你的代码没问题,只需将图像移动到 div 内即可。该位置混淆了 mouseenter/mouseleave 事件(在悬停中使用): http://jsfiddle.net/rkw79 /HHKgZ/9/
更好的解决方案: 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/
Better solution: http://jsfiddle.net/rkw79/HHKgZ/12/
Just put
position: relative;
into your#plz
element.最好使用 Jquery UI 可拖放 http://jqueryui.com/
Best use the Jquery UI draggable/droppable http://jqueryui.com/