我正在尝试使用 Jquery 制作图像旋转器,但是当我将鼠标放在图像上时我的旋转器不会停止,所以我猜测 clearTimeout 有问题。
这是我的代码:
$(document).ready(function () {
var o = 0
var t = null;
stop = false;
$("img:gt(0)").hide();
broj = ($("img").size());
function promena() {
o++;
if (o == broj) {
o = 0;
$("img:lt(3)").hide(function () {
$("img").eq(3).delay(1000).fadeOut(1000);
});
}
$("img").eq(o).delay(1000).fadeIn(1000, function () {
t = setTimeout(promena, 1000);
});
};
t = setTimeout(promena, 1000);
$("div img").mouseover(function () {
clearTimeout(t);
});
});
这是HTML:
<html>
<head>
<title>M</title>
</head>
<body>
<div>
<img src="images/1.jpg" />
<img src="images/2.jpg" />
<img src="images/3.jpg" />
<img src="images/4.jpg" />
</div>
</body>
</html>
如果这意味着什么,我所有的图像都用 img{position:absolute} 绝对定位