这是代码:http://jsfiddle.net/KTHWd/
所以基本上所有div都有相同的类,我想在我悬停时只循环当前div,当我在悬停时循环所有div。
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'none',
speed: 100,
timeout: 100
});
$('.slideshow').cycle('stop');
});
$(".slideshow").hover(
function () {
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'none',
speed: 100,
timeout: 100
});
});
},
function () {
$('.slideshow').cycle('stop');
}
);