我需要在鼠标悬停或悬停时让这个计数器暂停(停留在当前 div),并在鼠标悬停时恢复计数器。我尝试了很多方法,但对 jQuery API 还是很陌生。
<div id="slide_holder">
<div id="slide1" class="hidden">
<img src="images/001.jpg" class="fill">
</div>
<div id="slide2" class="hidden">
<img src="images/002.png" class="fill">
</div>
<div id="slide3" class="hidden">
<img src="images/003.jpg" class="fill">
</div>
<script>
$(function () {
var counter = 0,
divs = $('#slide1, #slide2, #slide3');
function showDiv () {
divs.hide() // hide all divs
.filter(function (index) { return index == counter % 3; }) // figure out correct div to show
.fadeIn('slow'); // and show it
counter++;
}; // function to loop through divs and show correct div
showDiv(); // show first div
setInterval(function () {
showDiv(); // show next div
}, 3 * 1000); // do this every 10 seconds
});
</script>