-1

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

4

1 回答 1

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
})

小提琴

于 2013-05-26T09:07:04.993 回答