如何重复执行mouseenter

时间:2013-05-26 07:50:50

标签: jquery mouseover mouseenter

我的网站上有一个简单的动画,默认情况下我只显示frame1。我的目标是,当用户悬停图像时,我想继续执行下一帧。我尝试过使用mouseenter和mouseover功能。但是如果要在容器内移动鼠标,它们只会执行这些功能。我想只在鼠标放在容器内部时才继续执行这些功能,即使它没有移动。

1 个答案:

答案 0 :(得分:0)

希望这会对你有所帮助,

HTML

<img src="https://www.google.co.in/images/srpr/logo4w.png"/>

JS:

$('body').delegate('img', 'mousemove', function(e) {
  alert(e.type)
  //write your code here
})

Fiddle