0
所以這是一個有趣的項目。我有4個縮略圖顯示在頁面上。每隔幾秒鐘,應突出顯示這些縮略圖中的一個。 (高亮表示在正常的拇指上可以看到帶有灰背景的新圖像)鼠標懸停後,我需要暫停計時器。我知道我很接近!在頁面加載時,第一個圖像會自動高亮顯示,但其他圖像永遠不會獲得自動高亮顯示。這裏是JS:Trichy高亮旋轉jQuery - 定時器和選擇器
$(function() { // Shorthand for $(document).ready(function() {
function nextImage() {
var next = $('div.activeThumb.currentHighlight').
removeClass('currentHighlight'). // Unhighlight old one
next('div.activeThumb'); // Find next one
if (next.length == 0) { // Cycle back to the first
next = $('div.activeThumb:first');
}
next.addClass('currentHighlight'); // Highlight new one
}
var timer = null;
$('a.aThumb').hover(function() {
clearInterval(timer); // Stop on hover
$('div.activeThumb.currentHighlight').
removeClass('currentHighlight');//Remove whatever the current auto highlight is. :)
}, function() {
setInterval(nextImage, 2000); //Restart on exit
});
nextImage(); // Highlight first image
setInterval(nextImage, 2000); // Start cycle
});
如果你願意,你可以用html和css查看測試頁。這是一個有點奇怪的設置。 http://cartercallahan.com/TestSite/javaSlider2/
如果答案有幫助,請點擊複選標記(將其變成綠色) – lucuma